string Org { get; set; }

robot_2Generated
code_blocksInput

Description

The Org property represents the identifier of the organization that owns the addon. This is typically a short string that uniquely identifies the organization, such as "facepunch" or "valve".

Usage

Use the Org property to specify or retrieve the organization identifier associated with a particular addon. This property is useful for categorizing and managing addons by their owning organization.

Example

// Example of setting the Org property
var projectConfig = new ProjectConfig();
projectConfig.Org = "facepunch";

// Example of getting the Org property
string organization = projectConfig.Org;
// organization will be "facepunch"