This commit is contained in:
2026-05-22 20:26:06 +03:30
parent d8b5abeb93
commit 39452b51ff
4 changed files with 79 additions and 5 deletions
+8
View File
@@ -1,3 +1,5 @@
using System.Collections.Generic;
namespace xCommons.Configurations {
public partial class XSwaggerConfiguration {
public string Title { get; set; } = "";
@@ -7,6 +9,7 @@ namespace xCommons.Configurations {
public XSwaggerContact Contact { get; set; } = null;
public XSwaggerLicence License { get; set; } = null;
public Dictionary<string, string> DefaultValues {get; set;} = null;
}
public partial class XSwaggerContact {
@@ -19,4 +22,9 @@ namespace xCommons.Configurations {
public string Name { get; set; }
public string Url { get; set; }
}
public partial class XSwaggerDefaultValues
{
public Dictionary<string, string> Values { get; set; }
}
}