Files
irc-netcore-api/IRaCIS.Core.Application/Service/Financial/DTO/ExchangeRateModel.cs
T
hang fc30cb39ee
continuous-integration/drone/push Build is passing
增加Global Using
2024-09-20 10:19:08 +08:00

12 lines
287 B
C#

namespace IRaCIS.Application.Contracts
{
public class ExchangeRateCommand
{
public Guid? Id { get; set; }
public string YearMonth { get; set; } = String.Empty;
public decimal Rate { get; set; }
public DateTime UpdateTime { get; set; }
}
}