using System.Runtime.Serialization; namespace TGS.Interface { /// /// Metadata about an /// //Namespace required for compatibility reasons [DataContract(Namespace = "http://schemas.datacontract.org/2004/07/TGServiceInterface")] public sealed class InstanceMetadata { /// /// The name of the /// [DataMember] public string Name { get; set; } /// /// The path of the /// [DataMember] public string Path { get; set; } /// /// Whether or not the is enabled /// [DataMember] public bool Enabled { get; set; } /// /// The logging ID of the . Will be 0 if is /// [DataMember] public byte LoggingID { get; set; } } }