-
Notifications
You must be signed in to change notification settings - Fork 0
/
AllotmentModel.cs
38 lines (37 loc) · 1.47 KB
/
AllotmentModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Denial_Coding.BAL.ViewModels
{
public class AllotmentModel
{
public List<SelectListItem> Status { get; set; }
public string FromDOS { get; set; }
public string ToDOS { get; set; }
public Int32 From { get; set; }
public Int32 To { get; set; }
public List<SelectListItem> CoderList { get; set; }
public List<SelectListItem> QCList { get; set; }
public string SeletedCoder { get; set; }
public string Coder { get; set; }
public string AccountNumber { get; set; }
public string Location { get; set; }
public string Pagecount { get; set; }
public string AllottedTo { get; set; }
public DateTime? DOS { get; set; }
public string SessionAccounts { get; set; }
public string CodedBy { get; set; }
public DateTime? CodedDate { get; set; }
public string SeletedQC { get; set; }
public List<SelectListItem> QCStatusList { get; set; }
public string QCStatus { get; set; }
public List<SelectListItem> AuditTypeList { get; set; }
public string AuditType { get; set; }
public string ProjectId { get; set; }
public List<SelectListItem> PracticeList { get; set; }
public string SelectedPractice { get; set; }
}
}