1234567891011121314151617181920 |
- #pragma warning disable CS1591
- using System.Collections.Generic;
- namespace Emby.Dlna
- {
- public class ControlResponse
- {
- public ControlResponse()
- {
- Headers = new Dictionary<string, string>();
- }
- public IDictionary<string, string> Headers { get; set; }
- public string Xml { get; set; }
- public bool IsSuccessful { get; set; }
- }
- }
|