8 lines
178 B
C#
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; }
|
|
} |