Skip to main content

Class ProfileModelV1

Version 1 of the profile model.

Assembly: Dalamud.dll
View Source
Declaration
public class ProfileModelV1 : ProfileModel

Inheritance: System.Object -> Dalamud.Plugin.Internal.Profiles.ProfileModel

Properties

SerializedPrefix

Gets the prefix of this version.

View Source
Declaration
public static string SerializedPrefix { get; }

AlwaysEnableOnBoot

Gets or sets a value indicating whether or not this profile should always be enabled at boot.

View Source
Declaration
[JsonProperty("b")]
public bool AlwaysEnableOnBoot { get; set; }

IsEnabled

Gets or sets a value indicating whether or not this profile is currently enabled.

View Source
Declaration
[JsonProperty("e")]
public bool IsEnabled { get; set; }

Color

Gets or sets a value indicating this profile's color.

View Source
Declaration
[JsonProperty("c")]
public uint Color { get; set; }

Plugins

Gets or sets the list of plugins in this profile.

View Source
Declaration
public List<ProfileModelV1.ProfileModelV1Plugin> Plugins { get; set; }