using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Metadata { /// /// StatusInfoMetadata type attribute /// public class AppServerMetadataTypeAttribute : Attribute { /// /// Gets the type of the metadata. /// /// /// The type of the metadata. /// public Type MetadataType { get; private set; } /// /// Initializes a new instance of the class. /// /// Type of the metadata. public AppServerMetadataTypeAttribute(Type metadataType) { MetadataType = metadataType; } } }