mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
17 lines
427 B
C#
17 lines
427 B
C#
namespace Roblox.Common.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";
|
|
}
|