Files
2024-08-31 12:07:21 +03:00

11 lines
327 B
C#

namespace District3API.domain;
public class FancierProfile
{
public int ProfileId { get; set; }
public List<string>? Links { get; set; }
public string? DailyMotto { get; set; }
public DateTime? RemoveMottoDate { get; set; }
public int FrameNumber { get; set; }
public string? Hashtag { get; set; }
}