Files
Kavita/API/DTOs/OPDS/Internal/FeedEntryContent.cs
T

12 lines
202 B
C#

using System.Xml.Serialization;
namespace API.DTOs.OPDS;
public sealed record FeedEntryContent
{
[XmlAttribute("type")]
public string Type = "text";
[XmlText]
public string Text;
}