You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Emby.Dlna/ControlResponse.cs

29 lines
528 B

#nullable disable
#pragma warning disable CS1591
using System.Collections.Generic;
10 years ago
namespace Emby.Dlna
10 years ago
{
public class ControlResponse
{
public ControlResponse()
{
Headers = new Dictionary<string, string>();
}
public IDictionary<string, string> Headers { get; }
10 years ago
public string Xml { get; set; }
public bool IsSuccessful { get; set; }
4 years ago
/// <inheritdoc />
public override string ToString()
{
return Xml;
}
10 years ago
}
}