BuecherwurmAPI/DTOs/LendRead.cs

12 lines
266 B
C#
Raw Normal View History

2020-05-27 13:47:14 +00:00
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; }
}
}