string Org { get; set; }

book_4_sparkGenerated
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". It is used to associate the addon with its owning entity.

Usage

To set or retrieve the organization identifier for a project configuration, use the Org property. This property is a string and should be set to a valid organization identifier.

Example

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

// Example of getting the Org property
string organization = projectConfig.Org;
Console.WriteLine($"The organization is: {organization}");