mirror of
https://github.com/sphildreth/roadie
synced 2025-02-18 14:08:29 +00:00
16 lines
494 B
C#
16 lines
494 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Library.Models
|
|
{
|
|
public static class OperationMessages
|
|
{
|
|
public const string Key = "Bearer ";
|
|
public const string NewKey = "__new__";
|
|
public const string NoImageDataFound = "NO_IMAGE_DATA_FOUND";
|
|
public const string NotModified = "NotModified";
|
|
public const string OkMessage = "OK";
|
|
public const string ErrorOccured = "An error has occured";
|
|
}
|
|
}
|