using System.Runtime.Serialization; namespace TGServiceInterface { /// /// Metadata about an /// [DataContract] 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; } } }