rdt-client/server/RdtClient.Data/Models/Internal/Profile.cs
Cucumberrbob b333c738be
Add DisableUpdateNotifications setting
Lets the user turn notifications off completely
2025-03-11 20:34:52 +00:00

11 lines
No EOL
361 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? DisableUpdateNotification { get; set; }
}