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
+27
View File
@@ -0,0 +1,27 @@
using System.Collections.Generic;
namespace xCommons.Configurations {
/// <summary>
/// represent an xBackend Application
/// </summary>
public partial class XAppConfiguration {
public string Name { get; set; }
public string Version { get; set; }
public string XPoweredValue { get; set; }
public IEnumerable<string> AllowedOrigins { get; set; }
public string WelcomeMessage { get; set; }
public string DefaultLanguage { get; set; }
public XMessageResourceTitles MessageResourceTitles { get; set; }
}
public partial class XMessageResourceTitles {
public string Terms { get; set; }
public string Invite { get; set; }
public string RegistrationApprove { get; set; }
public string Registered { get; set; }
public string VerificationCode { get; set; }
public string ChangePassword { get; set; }
public string PasswordChanged { get; set; }
public string NewDeviceLoggedIn { get; set; }
}
}
+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; }
}
}