Initial Commit ...

This commit is contained in:
2024-01-25 04:39:39 +03:30
commit c743026b3c
42 changed files with 3954 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
namespace xCommons.Configurations {
public partial class XSwaggerConfiguration {
public string Title { get; set; } = "";
public string Version { get; set; } = "V1.0";
public string Description { get; set; } = "";
public string TermsOfServiceUrl { get; set; } = "";
public XSwaggerContact Contact { get; set; } = null;
public XSwaggerLicence License { get; set; } = null;
}
public partial class XSwaggerContact {
public string Name { get; set; }
public string Email { get; set; }
public string Url { get; set; }
}
public partial class XSwaggerLicence {
public string Name { get; set; }
public string Url { get; set; }
}
}