1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Runtime.Serialization;
- using System.Text;
- namespace vCloud.GeneratePackages.Tool
- {
- [DataContract]
- public class AppSettings
- {
- [DataMember]
-
-
-
- public string FtpUrl { get; set; }
- [DataMember]
-
-
-
- public string GetNotesApiAddress { get; set; }
- }
- }
|