Add webhook support for card transactions and notifications.
Some optimizations and fixes Signed-off-by: Dmitrii <computer@yawaflua.tech> Took 2 hours 4 minutes
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace SpMega.Backend.Persistent.Models.Users;
|
||||
|
||||
public class UserSession
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Token { get; set; }
|
||||
[MaxLength(2048)] public string Token { get; set; }
|
||||
public User? User { get; set; } = null;
|
||||
public Guid UserId { get; set; }
|
||||
public string UserName { get; set; }
|
||||
[MaxLength(2048)] public string UserName { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; init; } = DateTime.UtcNow;
|
||||
public DateTime UpdatedAt { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user