13 lines
223 B
C#
13 lines
223 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ErsatzTV.Infrastructure.Epg.Models;
|
|
|
|
public class EpgTitle
|
|
{
|
|
[XmlAttribute("lang")]
|
|
public string Lang { get; set; }
|
|
|
|
[XmlText]
|
|
public string Value { get; set; }
|
|
}
|