mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
202 B
C#
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;
|
|
}
|