Clean up legacy outgoing attachment duplicates
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
Reference in New Issue
Block a user