Kavita/API/DTOs/OPDS/FeedEntryContent.cs
2025-05-04 07:14:44 -07:00

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;
}