Class GeneralSetting
- Namespace
- Alis.Core.Ecs.System.Setting.General
- Assembly
- Alis.dll
The general setting class
public class GeneralSetting : IGeneralSetting, IBuilder<GeneralSettingBuilder>Inheritance
Implements
Inherited Members
Constructors
GeneralSetting()
Initializes a new instance of the Alis.Core.Ecs.System.Setting.General.GeneralSetting class
public GeneralSetting()GeneralSetting(bool, string, string, string, string, string, string)
Initializes a new instance of the Alis.Core.Ecs.System.Setting.General.GeneralSetting class
public GeneralSetting(bool debug, string name, string description, string version, string author, string license, string icon)Parameters
debugbool-
The debug
namestring-
The name
descriptionstring-
The description
versionstring-
The version
authorstring-
The author
licensestring-
The license
iconstring-
The icon
Properties
Author
Gets or sets the value of the author
[JsonPropertyName("_Author_")]
public string Author { get; set; }Property Value
Debug
Gets or sets the value of the debug
[JsonPropertyName("_Debug_")]
public bool Debug { get; set; }Property Value
Description
Gets or sets the value of the description
[JsonPropertyName("_Description_")]
public string Description { get; set; }Property Value
Icon
Gets or sets the value of the icon
[JsonPropertyName("_Icon_")]
public string Icon { get; set; }Property Value
License
Gets or sets the value of the license
[JsonPropertyName("_License_")]
public string License { get; set; }Property Value
Name
Gets or sets the value of the name
[JsonPropertyName("_Name_")]
public string Name { get; set; }Property Value
Version
Gets or sets the value of the version
[JsonPropertyName("_Version_")]
public string Version { get; set; }Property Value
Methods
Builder()
Builders this instance
public GeneralSettingBuilder Builder()Returns
- GeneralSettingBuilder
-
The graphic setting builder
See Also
-
IBuilder<TOut>