PIbd-31_COP6/BookContract/ViewModels/HistoryViewModel.cs

17 lines
373 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookContract.ViewModels
{
public class HistoryViewModel
{
public int Id { get; set; }
public int BookId { get; set; }
public int ReaderId { get; set; }
public DateTime DateBorrowed { get; set; }
}
}