first commit
This commit is contained in:
13
BookHive/DTO/Loan/UpdateLoanDto.cs
Normal file
13
BookHive/DTO/Loan/UpdateLoanDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace BookHive.DTO.Loan;
|
||||
|
||||
public class UpdateLoanDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int BookId { get; set; }
|
||||
public int MemberId { get; set; }
|
||||
|
||||
public DateOnly LoanDate { get; set; }
|
||||
public DateOnly DueDate { get; set; }
|
||||
public DateOnly? ReturnDate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user