- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeployModel.cs
More file actions
Latest commit
41 lines (34 loc) · 971 Bytes
/
Copy pathDeployModel.cs
File metadata and controls
41 lines (34 loc) · 971 Bytes
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
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceReportDeploy
{
[Serializable]
publicclassDeployModel
{
publicList<Server>Servers{get;set;}
publicList<Corp>Corps{get;set;}
}
publicclassServer
{
publicconststringServerPath="/ReportServer/ReportService2010.asmx";
publicstringServerName{get;set;}
privatestring_serverUrl;
publicstringServerUrl
{
get{return_serverUrl;}
set{_serverUrl="http://"+value+ServerPath;}
}
publicstringUserName{get;set;}
publicstringPassword{get;set;}
}
publicclassCorp
{
publicstringCorpId{get;set;}
publicstringCorpName{get;set;}
publicstringServerName{get;set;}
publicstringDefaultPath{get;set;}
}
}