mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 04:26:11 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
12 lines
212 B
C#
12 lines
212 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace Kavita.Models.DTOs.OPDS;
|
|
|
|
public sealed record FeedEntryContent
|
|
{
|
|
[XmlAttribute("type")]
|
|
public string Type = "text";
|
|
[XmlText]
|
|
public string Text;
|
|
}
|