Sanely namespaces the project

This commit is contained in:
Cyberboss
2017-11-12 23:48:49 -05:00
parent cc364a75d6
commit 6e54f622de
154 changed files with 2434 additions and 2434 deletions
+32
View File
@@ -0,0 +1,32 @@
using System.Runtime.Serialization;
namespace TGS.Interface
{
/// <summary>
/// Metadata about an <see cref="Components.ITGInstance"/>
/// </summary>
[DataContract]
public sealed class InstanceMetadata
{
/// <summary>
/// The name of the <see cref="Components.ITGInstance"/>
/// </summary>
[DataMember]
public string Name { get; set; }
/// <summary>
/// The path of the <see cref="Components.ITGInstance"/>
/// </summary>
[DataMember]
public string Path { get; set; }
/// <summary>
/// Whether or not the <see cref="Components.ITGInstance"/> is enabled
/// </summary>
[DataMember]
public bool Enabled { get; set; }
/// <summary>
/// The logging ID of the <see cref="Components.ITGInstance"/>. Will be 0 if <see cref="Enabled"/> is <see langword="false"/>
/// </summary>
[DataMember]
public byte LoggingID { get; set; }
}
}