mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 19:28:02 -05:00
12 lines
270 B
C#
12 lines
270 B
C#
namespace Cleanuparr.Domain.Entities.Readarr;
|
|
|
|
public sealed record Book
|
|
{
|
|
public required long Id { get; init; }
|
|
|
|
public required string Title { get; init; }
|
|
|
|
public long AuthorId { get; set; }
|
|
|
|
public Author Author { get; set; } = new();
|
|
} |