개정판 5ae34a5e
Feature: 도면 유사도 분류 기능 추가
Change-Id: Ide12dab6e2e4732ed05e0f592303b32ba60c5e78
ID2.Manager/ID2.Manager.Data/Models/Documents.cs | ||
---|---|---|
29 | 29 |
public string SubSystemCode { get; set; } |
30 | 30 |
public string Team { get; set; } |
31 | 31 |
|
32 |
private string _Simularity = string.Empty; |
|
33 |
public string Simularity |
|
34 |
{ |
|
35 |
get { return _Simularity; } |
|
36 |
set |
|
37 |
{ |
|
38 |
if(!_Simularity.Equals(value)) |
|
39 |
{ |
|
40 |
_Simularity = value; |
|
41 |
RaisePropertyChanged("Simularity"); |
|
42 |
} |
|
43 |
} |
|
44 |
} |
|
45 |
|
|
32 | 46 |
private string _RefProjectCode = string.Empty; |
33 | 47 |
//[DataMember] |
34 | 48 |
public string RefProjectCode |
내보내기 Unified diff