2022-02-14 01:51:52 +01:00
|
|
|
|
namespace decePubClient.Models
|
|
|
|
|
{
|
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; } = "45f14fa8-c40f-4121-997c-ef2542196a50";
|
|
|
|
|
public bool IsAuthenticated { get; set; } = false;
|
|
|
|
|
public List<UserClaim> Claims { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public string UserName { get; set; } = "@loosy@letsrulethe.world";
|
|
|
|
|
public string DisplayName { get; set; } = "loosy";
|
2022-12-02 10:19:57 +01:00
|
|
|
|
public string PictureUrl { get; set; } = "https://letsrulethe.world/media/ddd91d51-dc12-4b82-86a2-2a28cc959183/L51ZAL4QEL07";
|
|
|
|
|
public string BackgroundUrl { get; set; } = "https://letsrulethe.world/media/9a3cc6c4-1018-4f41-86c7-f3e63e362bf4/EXM8RUK10B0Z";
|
2022-02-14 01:51:52 +01:00
|
|
|
|
public string ProfileUrl { get; set; } = "https://letsrulethe.world/users/loosy";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class UserClaim
|
|
|
|
|
{
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|