Files
caliverse_server/BrokerApiCore/DbEntity/PlanetItemExchangeOrderAmountTotalLimit.cs
2025-05-01 07:23:28 +09:00

12 lines
521 B
C#

namespace BrokerApiCore;
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; // 수정일
}