22 lines
541 B
C#
22 lines
541 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Net.Mime
|
|
{
|
|
public static class MimeHeaders
|
|
{
|
|
public const string ContentDescription = "content-description";
|
|
|
|
public const string ContentDisposition = "content-disposition";
|
|
|
|
public const string ContentId = "content-id";
|
|
|
|
public const string ContentTransferEncoding = "content-transfer-encoding";
|
|
|
|
public const string ContentType = "content-type";
|
|
|
|
public const string MimeVersion = "mime-version";
|
|
}
|
|
}
|