초기커밋
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace BrokerCore.DbEntity;
|
||||
|
||||
public class PlanetItemExchangeOrderAmountTotalLimit
|
||||
{
|
||||
public required string ExchangeMetaId { get; set; } // 교환 메타 아이디
|
||||
public required DateOnly ExchangeDate { get; set; } // 교환 일자
|
||||
public required string SeasonId { get; set; } // 시즌 아이디
|
||||
public required int DailyAmount { get; set; } // 교환 메타 수량
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow; // 생성일
|
||||
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; // 수정일
|
||||
}
|
||||
Reference in New Issue
Block a user