-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessages.cs
More file actions
17 lines (17 loc) · 971 Bytes
/
Messages.cs
File metadata and controls
17 lines (17 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace TvHeadendRestApiClientLibrary
{
public class Messages
{
public const string MESSAGE_INVALID_DVR_CONFIGNAME = "Invalid DVR_Profilename";
public const string MESSAGE_INVALID_CHANNELNAME = "Invalid Channelname";
public const string MESSAGE_INVALID_LANGUAGE = "Invalid Language";
public const string MESSAGE_UNKNOWN_DVR_ENTRY = "DVR_Entry not found";
public const string MESSAGE_INVALID_REQUESTDATA = "Invalid Requestdata";
public const string MESSAGE_NO_DATA_FOUND = "No data found";
public const string MESSAGE_INVALID_COMMAND = "Invalid command";
public const string MESSAGE_DVR_CREATE_ENTRY_UNSUCCESSFUL = "DVR Create entry unsuccessful";
public const string MESSAGE_DVR_REMOVE_ENTRY_UNSUCCESSFUL = "DVR Remove entry unsuccessful";
public const string MESSAGE_INVALID_TIME = "Invalid time";
public const string MESSAGE_PATH_NOT_FOUND = "Path not found";
}
}