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.WTM_PROJECTVMs { public partial class WTM_PROJECTBatchVM : BaseBatchVM { public WTM_PROJECTBatchVM() { ListVM = new WTM_PROJECTListVM(); LinkedVM = new WTM_PROJECT_BatchEdit(); } } /// /// Class to define batch edit fields /// public class WTM_PROJECT_BatchEdit : BaseVM { protected override void InitVM() { } } }