Files
SPMega/backend/SpMega.Backend/Persistent/Models/Users/UserSession.cs
T
Dmitrii f19a5d3586
Java CI / build (push) Successful in 50s
.NET+Docker CI/CD / Unit and Integration tests (push) Successful in 33s
.NET+Docker CI/CD / Push Docker image to ghcr.io (push) Failing after 30s
Add webhook support for card transactions and notifications.
Some optimizations and fixes

Signed-off-by: Dmitrii <computer@yawaflua.tech>

Took 2 hours 4 minutes
2026-07-12 06:27:28 +03:00

17 lines
561 B
C#

using System.ComponentModel.DataAnnotations;
namespace SpMega.Backend.Persistent.Models.Users;
public class UserSession
{
public Guid Id { get; set; }
[MaxLength(2048)] public string Token { get; set; }
public User? User { get; set; } = null;
public Guid UserId { get; set; }
[MaxLength(2048)] public string UserName { get; set; }
public DateTime CreatedAt { get; init; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; }
public DateTime? DeletedAt { get; set; }
public bool IsDeleted { get; set; } = false;
}