diff options
Diffstat (limited to 'Emby.Dlna/ControlResponse.cs')
| -rw-r--r-- | Emby.Dlna/ControlResponse.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Emby.Dlna/ControlResponse.cs b/Emby.Dlna/ControlResponse.cs new file mode 100644 index 000000000..889a6940c --- /dev/null +++ b/Emby.Dlna/ControlResponse.cs @@ -0,0 +1,18 @@ +using System.Collections.Generic; + +namespace Emby.Dlna +{ + public class ControlResponse + { + public IDictionary<string, string> Headers { get; set; } + + public string Xml { get; set; } + + public bool IsSuccessful { get; set; } + + public ControlResponse() + { + Headers = new Dictionary<string, string>(); + } + } +}
\ No newline at end of file |
