Add account entity

This commit is contained in:
2025-11-26 09:35:56 +09:00
parent 0215abd6ec
commit 28cfe99c78
6 changed files with 488 additions and 0 deletions

View File

@ -0,0 +1,17 @@
namespace Hcs.WebApp.Data.Hcs
{
public class Account
{
public int Id { get; set; }
public Guid? HcsId { get; set; }
public string? ThirdPartyId { get; set; }
public DateTime? SyncedAt { get; set; }
public int? LastSyncOperationId { get; set; }
public virtual Operation? LastSyncOperation { get; set; }
}
}