You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
466 B

using Entity.Sugar;
using System.Collections.Generic;
namespace Entity.ViewModels
{
public class View_WSM_ExhibitionRules : OTB_WSM_ExhibitionRules
{
public View_WSM_ExhibitionRules()
{
CurrencyName = "";
Files = new List<OTB_SYS_Files>();
}
public List<OTB_SYS_Files> Files { get; set; }
public string CurrencyName { get; set; }
public string CurrencyName_EN { get; set; }
}
}