mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
10 lines
202 B
C#
10 lines
202 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Metadata;
|
|
|
|
public sealed record PublicationStatusDto
|
|
{
|
|
public PublicationStatus Value { get; set; }
|
|
public required string Title { get; set; }
|
|
}
|