Class RepositorySetting
Represents a setting that can be stored in Colectica Repository.
Inherited Members
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
[DataContract(Namespace = "http://ns.colectica.com/2009/07/")]
public class RepositorySetting
Properties
LongValue
Gets or sets the numeric value of the setting.
Declaration
[DataMember]
public long? LongValue { get; set; }
Property Value
Type | Description |
---|---|
long? | The long value. |
SettingName
Gets or sets the name of the setting.
Declaration
[DataMember]
public string SettingName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the setting. |
Value
Gets or sets the string value of the setting.
Declaration
[DataMember]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string | The value. |