Files
TP-Fluent/BookHive/DTO/Author/GetAuthorDto.cs
2026-03-09 22:09:10 +01:00

8 lines
178 B
C#

namespace BookHive.DTO.Author;
public class GetAuthorDto
{
public int Id { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
}