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