11 lines
202 B
C#
11 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;
|
|
}
|