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