mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 18:13:32 -04:00
8 lines
176 B
C#
8 lines
176 B
C#
namespace Cleanuparr.Domain.Entities.Readarr;
|
|
|
|
public sealed record Author
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string AuthorName { get; set; } = string.Empty;
|
|
} |