mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-02 02:27:03 -05: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; }
|
|
}
|