rdt-client/server/RdtClient.Data/Models/Internal/Profile.cs
2021-10-30 18:48:32 -06:00

11 lines
246 B
C#

using System;
namespace RdtClient.Data.Models.Internal
{
public class Profile
{
public String Provider { get; set; }
public String UserName { get; set; }
public DateTimeOffset? Expiration { get; set; }
}
}