12 lines
407 B
C#
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; }
|
|
}
|