AipConfig.cs 574 B

1234567891011121314151617181920
  1. namespace AipDatabase.API.Models
  2. {
  3. public class AipConfig
  4. {
  5. public string supported_file_ext { get; set; }
  6. public string protected_file_ext { get; set; }
  7. public AipConfig(string supportedFileExt, string protectedFileExt)
  8. {
  9. this.supported_file_ext = supportedFileExt;
  10. this.protected_file_ext = protectedFileExt;
  11. }
  12. //public AipConfig(AipConfig obj)
  13. //{
  14. // SupportedFileExt = obj.SupportedFileExt;
  15. // ProtectedFileExt = obj.ProtectedFileExt;
  16. //}
  17. }
  18. }