22 lines
735 B
C#
22 lines
735 B
C#
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; }
|
|
}
|
|
} |