-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChecklistModel.cs
58 lines (51 loc) · 1.56 KB
/
ChecklistModel.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Web.Mvc;
using System.Web.Routing;
using System.Web.UI;
using Countersoft.Foundation.Commons.Extensions;
using Countersoft.Gemini.Commons.Dto;
using Countersoft.Gemini.Commons.Entity;
using Countersoft.Gemini.Extensibility.Apps;
using Countersoft.Gemini.Infrastructure;
using Countersoft.Gemini.Infrastructure.Apps;
namespace Checklist
{
public class ChecklistConfigModel
{
public IEnumerable<SelectListItem> Templates { get; set; }
public List<ChecklistConfigData> Items { get; set; }
public ChecklistConfigModel()
{
Items = new List<ChecklistConfigData>();
}
}
public class ChecklistConfigDataModel
{
public int CurrentSequence { get; set; }
public List<ChecklistConfigTemplateData> Data { get; set; }
}
public class ChecklistConfigTemplateData
{
public int TemplateId { get; set; }
public List<ChecklistConfigData> Items { get; set; }
public ChecklistConfigTemplateData()
{
Items = new List<ChecklistConfigData>();
}
}
public class ChecklistConfigData
{
public int Id { get; set; }
public string Title { get; set; }
}
public class ChecklistData
{
public int CheckId { get; set; }
public string CheckTitle { get; set; }
public bool Checked { get; set; }
public string CheckedBy { get; set; }
public DateTime CheckedDate { get; set; }
}
}