12 lines
266 B
C#
12 lines
266 B
C#
|
using System;
|
||
|
|
||
|
namespace BuecherwurmAPI.DTOs
|
||
|
{
|
||
|
public class LendReadDTO
|
||
|
{
|
||
|
public int ItemId { get; set;}
|
||
|
public DateTime ReturnDate { get; set; }
|
||
|
public string Customer { get; set; }
|
||
|
public bool Returned { get; set; }
|
||
|
}
|
||
|
}
|