markus / MarkusLogview / MarkusDataModel / DTOs / ProjectDTO.cs @ 974af55b
이력 | 보기 | 이력해설 | 다운로드 (656 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace MarkusDataModel.DTOs |
7 |
{ |
8 |
[Serializable] |
9 |
public class ProjectList |
10 |
{ |
11 |
public string ProjectNO { get; set; } |
12 |
public string ProjectName { get; set; } |
13 |
public DateTime RunDateTime { get; set; } |
14 |
public int IsActivity { get; set; } |
15 |
//public string FilePath { get; set; } |
16 |
public int Insert { get; set; } |
17 |
public int Wait { get; set; } |
18 |
public int Crop { get; set; } |
19 |
public int Success { get; set; } |
20 |
public int Error { get; set; } |
21 |
public int Entire { get; set; } |
22 |
} |
23 |
} |