Table of Contents

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

debug bool

The debug

name string

The name

description string

The description

version string

The version

author string

The author

license string

The license

icon string

The icon

Properties

Author

Gets or sets the value of the author

[JsonPropertyName("_Author_")]
public string Author { get; set; }

Property Value

string

Debug

Gets or sets the value of the debug

[JsonPropertyName("_Debug_")]
public bool Debug { get; set; }

Property Value

bool

Description

Gets or sets the value of the description

[JsonPropertyName("_Description_")]
public string Description { get; set; }

Property Value

string

Icon

Gets or sets the value of the icon

[JsonPropertyName("_Icon_")]
public string Icon { get; set; }

Property Value

string

License

Gets or sets the value of the license

[JsonPropertyName("_License_")]
public string License { get; set; }

Property Value

string

Name

Gets or sets the value of the name

[JsonPropertyName("_Name_")]
public string Name { get; set; }

Property Value

string

Version

Gets or sets the value of the version

[JsonPropertyName("_Version_")]
public string Version { get; set; }

Property Value

string

Methods

Builder()

Builders this instance

public GeneralSettingBuilder Builder()

Returns

GeneralSettingBuilder

The graphic setting builder

See Also

IBuilder<TOut>