namespace Atomx.Admin.Client.Models
{
public class CurrencyModel
{
///
/// 数据ID
///
public int Id { get; set; }
///
/// 语言
///
public string Language { get; set; } = string.Empty;
///
/// 货币名称
///
public string Name { get; set; } = string.Empty;
///
/// 货币单位代码
///
public string CurrencyCode { get; set; } = string.Empty;
///
/// 本地显示
///
public string DisplayLocale { get; set; } = string.Empty;
///
/// 数字自定义格式化
///
public string CustomFormatting { get; set; } = string.Empty;
///
/// 兑换汇率
///
public double Rate { get; set; }
///
/// 排序
///
public int DisplayOrder { get; set; }
///
/// 是否可用
///
public bool Enabled { get; set; }
///
/// 是否编辑
///
public bool IsEdit { get; set; }
}
}