1234567891011121314151617181920 |
- namespace AipDatabase.API.Models
- {
- public class AipConfig
- {
- public string supported_file_ext { get; set; }
- public string protected_file_ext { get; set; }
- public AipConfig(string supportedFileExt, string protectedFileExt)
- {
- this.supported_file_ext = supportedFileExt;
- this.protected_file_ext = protectedFileExt;
- }
- //public AipConfig(AipConfig obj)
- //{
- // SupportedFileExt = obj.SupportedFileExt;
- // ProtectedFileExt = obj.ProtectedFileExt;
- //}
- }
- }
|