7 lines
251 B
C#
7 lines
251 B
C#
namespace xIdentityService.Constants {
|
|
public struct XResponseContentTypes {
|
|
public const string HTML = "text/html";
|
|
public const string JSON = "application/json";
|
|
public const string JavaScript = "text/javascript";
|
|
}
|
|
} |