20 lines
420 B
C#
20 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectLibrary.Entites;
|
|
|
|
public class TempBookOrders
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime OrderDate { get; set; }
|
|
public DateTime ReturnDate { get; set; }
|
|
public int ReaderID { get; set; }
|
|
public int BookID { get; set; }
|
|
public int Count { get; set; }
|
|
|
|
|
|
}
|