first commit
This commit is contained in:
11
BookHive/DTO/Author/UpdateAuthorDto.cs
Normal file
11
BookHive/DTO/Author/UpdateAuthorDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace BookHive.DTO.Author;
|
||||
|
||||
public class UpdateAuthorDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Biography { get; set; }
|
||||
public DateOnly BirthDate { get; set; }
|
||||
public string? Nationality { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user