rdt-client/server/RdtClient.Data/Models/Internal/Profile.cs
2026-02-11 19:44:49 -07:00

12 lines
407 B
C#

namespace RdtClient.Data.Models.Internal;
public class Profile
{
public String? Provider { get; set; }
public String? UserName { get; set; }
public DateTimeOffset? Expiration { get; set; }
public String? CurrentVersion { get; set; }
public String? LatestVersion { get; set; }
public Boolean? IsInsecure { get; set; }
public Boolean? DisableUpdateNotification { get; set; }
}