Files
lct2025-lonolith/LctMonolith/Models/Database/Profile.cs
2025-10-01 01:42:45 +03:00

22 lines
641 B
C#

namespace LctMonolith.Models.Database;
public class Profile
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public AppUser User { get; set; } = null!;
public string? FirstName { get; set; }
public string? LastName { get; set; }
public DateOnly? BirthDate { get; set; }
public string? About { get; set; }
public string? Location { get; set; }
// Avatar in S3 / MinIO
public string? AvatarS3Key { get; set; }
public string? AvatarUrl { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}