namespace Front.Program.Models; public class UserData { public string Uid { get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public DateTime? Birth { get; set; } public string Type { get; set; } = string.Empty; public string? DeviceId { get; set; } public bool AutoLoginYn { get; set; } public DateTime LoginDate { get; set; } public string? PushToken { get; set; } }