using Custom.BLL.Model; using System.Collections.Generic; using FluentValidation.Attributes; using System; namespace custom.Web.Models { [Validator(typeof(TimeSheetValidator))] public class TimeSheetViewModel { public string EmployeeName { get; set; } public string ApproverName { get; set; } public WeekClass TimeSheet { get; set; } public DayClass Sunday { get; set; } public DayClass Monday { get; set; } public DayClass Tuesday { get; set; } public DayClass Wednesday { get; set; } public DayClass Thursday { get; set; } public DayClass Friday { get; set; } public DayClass Saturday { get; set; } public string SelectedPayRollWeek { get; set; } public bool IsTimeSheetSubmitted { get; set; } public List WarningList { get; set; } public string tz { get; set; } //TimeZone } }