end of tp2

This commit is contained in:
2026-03-17 11:12:34 +01:00
parent d202d1541d
commit 90fcaca356
7 changed files with 76 additions and 40 deletions

View File

@@ -8,12 +8,11 @@ public class GetLoanDto
public int Id { get; set; }
public int BookId { get; set; }
public string? BookTitle { get; set; }
public int MemberId { get; set; }
public string? MemberFullName { get; set; }
public DateOnly LoanDate { get; set; }
public DateOnly DueDate { get; set; }
public DateOnly? ReturnDate { get; set; }
public GetBookDto? Book { get; set; }
public GetMemberDto? Member { get; set; }
}