mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
220 B
C#
12 lines
220 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace API.DTOs.OPDS;
|
|
|
|
public sealed record FeedAuthor
|
|
{
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
[XmlElement("uri")]
|
|
public string Uri { get; set; }
|
|
}
|