Initial Commit ...
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user