9 lines
186 B
C#
9 lines
186 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Metadata;
|
|
|
|
public sealed record AgeRatingDto
|
|
{
|
|
public AgeRating Value { get; set; }
|
|
public required string Title { get; set; }
|
|
}
|