namespace MimeTypeList.MimeTypeNamespaces { /// Text mime type namespace. public class TextMimeType { /// text/html public readonly string html = ".html"; /// text/plain public readonly string plain = ".txt"; /// text/scriptlet public readonly string scriptlet = ".wsc"; /// text/xml public readonly string xml = ".xml"; /// Internal default constructor. internal TextMimeType() { // } } }