2024-04-18 07:12:10 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace SCHALE.Common.Database.Models
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
2024-04-25 03:50:09 +00:00
|
|
|
|
public class GuestAccount
|
2024-04-18 07:12:10 +00:00
|
|
|
|
{
|
|
|
|
|
public uint Uid { get; set; }
|
2024-04-26 01:32:21 +00:00
|
|
|
|
|
2024-04-18 07:12:10 +00:00
|
|
|
|
public string DeviceId { get; set; }
|
2024-04-26 01:32:21 +00:00
|
|
|
|
|
|
|
|
|
[Key]
|
|
|
|
|
[Column("_id")]
|
2024-04-18 07:12:10 +00:00
|
|
|
|
public string Token { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|