공개: KoTalk 최신 기준선
This commit is contained in:
commit
debf62f76e
572 changed files with 41689 additions and 0 deletions
13
src/PhysOn.Domain/Accounts/Account.cs
Normal file
13
src/PhysOn.Domain/Accounts/Account.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace PhysOn.Domain.Accounts;
|
||||
|
||||
public sealed class Account
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string DisplayName { get; set; } = string.Empty;
|
||||
public string? StatusMessage { get; set; }
|
||||
public string Locale { get; set; } = "ko-KR";
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
|
||||
public List<Device> Devices { get; } = [];
|
||||
public List<Session> Sessions { get; } = [];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue