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".
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".
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 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"