Description
The Org
property represents the identifier of the organization that owns the addon. This is typically a string such as "facepunch" or "valve". It is used to uniquely identify the organization associated with the addon within the Sandbox environment.
Usage
To set or retrieve the organization identifier for a project configuration, use the Org
property. This property is a string
and can be accessed publicly.
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"