11 lines
316 B
C#
11 lines
316 B
C#
namespace MyOffice.Web.Models.Currency;
|
|
|
|
public class CurrencyEditModel
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string ShortName { get; set; } = null!;
|
|
public int Quantity { get; set; }
|
|
public decimal Rate { get; set; }
|
|
public DateTime RateDate { get; set; }
|
|
public bool IsPrimary { get; set; }
|
|
} |