Files
xCommons/Configurations/XAppConfiguration.cs
T
2024-01-25 04:39:39 +03:30

27 lines
1.0 KiB
C#

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; }
}
}