mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
13 lines
274 B
C#
13 lines
274 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Account;
|
|
|
|
public sealed record UpdateAgeRestrictionDto
|
|
{
|
|
[Required]
|
|
public AgeRating AgeRating { get; set; }
|
|
[Required]
|
|
public bool IncludeUnknowns { get; set; }
|
|
}
|