Files
xIdentityService/Constants/XResponseContentTypes.cs
2024-01-25 04:44:02 +03:30

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";
}
}