-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRequestData.cs
More file actions
27 lines (26 loc) · 935 Bytes
/
RequestData.cs
File metadata and controls
27 lines (26 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace TvHeadendRestApiClientLibrary
{
/// <summary>
/// Contains all neccesarry data for send request to TvHeadendServer.
/// </summary>
public class RequestData
{
public string ServerUrl { get; set; }
public string ServerUrlApi { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string Command { get; set; }
public long Starttime { get; set; }
public long Endtime { get; set; }
public string ChannelName { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Uuid { get; set; }
public string Language { get; set; }
public string DvrProfileName { get; set; }
public string Comment { get; set; }
public Priority Priority { get; set; }
public string StreamplayerPath { get; set; }
}
}