Clean up legacy outgoing attachment duplicates

This commit is contained in:
sevenhill
2026-07-05 00:26:18 +03:00
parent b022218a1f
commit b518f22a09
14 changed files with 407 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace QMax.Api.Data.Entities;
public sealed class User
{
public Guid Id { get; set; } = Guid.NewGuid();
public string DisplayName { get; set; } = "QMAX Owner";
public string? PhoneNumber { get; set; }
public string? AvatarPath { get; set; }
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
public DateTimeOffset UpdatedAt { get; set; } = DateTimeOffset.UtcNow;
public ICollection<UserSession> Sessions { get; set; } = new List<UserSession>();
}