using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; using WalkingTec.Mvvm.Core; using WalkingTec.Mvvm.Core.Extensions; using wtmProject.Model; namespace wtmProject.ViewModel._Admin.FrameworkCustomVMs { public partial class FrameworkCustomTemplateVM : BaseTemplateVM { [Display(Name = "_Admin.CustomCode")] public ExcelPropety CustomCode_Excel = ExcelPropety.CreateProperty(x => x.CustomCode); [Display(Name = "_Admin.CustomName")] public ExcelPropety CustomName_Excel = ExcelPropety.CreateProperty(x => x.CustomName); protected override void InitVM() { } } public class FrameworkCustomImportVM : BaseImportVM { } }