8 lines
196 B
C#
8 lines
196 B
C#
namespace FictionArchive.Service.NovelService.Models.DTOs;
|
|
|
|
public class PersonDto : BaseDto<uint>
|
|
{
|
|
public required string Name { get; init; }
|
|
public string? ExternalUrl { get; init; }
|
|
}
|