Interface IBaseApplicationSettings
Base class for application settings.
Namespace: ISynergy.Framework.Core.Abstractions.Base
Assembly: ISynergy.Framework.Core.dll
Syntax
public interface IBaseApplicationSettings
Properties
View SourceColor
Setting for storing the theme color.
Declaration
string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DefaultUser
Setting for maintaining last succesfull username logged in.
Declaration
string DefaultUser { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsAdvanced
Setting for maintaining the advanced mode of the application.
Declaration
bool IsAdvanced { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsAutoLogin
If RefreshToken is available or user is available in Windows Credentials locker and setting is true, the application can login automatically.
Declaration
bool IsAutoLogin { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFullscreen
Setting for maintaining if application is in fullscreen mode or not.
Declaration
bool IsFullscreen { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Language
Setting for maintaining the default culture used.
Declaration
Languages Language { get; set; }
Property Value
Type | Description |
---|---|
Languages |
RefreshToken
Setting for storing the refresh token received on authentication.
Declaration
string RefreshToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Theme
Gets or sets the theme.
Declaration
Themes Theme { get; set; }
Property Value
Type | Description |
---|---|
Themes |
Wallpaper
Wallpaper of the application.
Declaration
byte[] Wallpaper { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |