Add metering device entity

This commit is contained in:
2025-11-28 09:54:41 +09:00
parent bca845296a
commit 8eb8786341
6 changed files with 527 additions and 0 deletions

View File

@ -0,0 +1,17 @@
namespace Hcs.WebApp.Data.Hcs
{
public class MeteringDevice
{
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; }
}
}