22 lines
409 B
C#
22 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.Entities
|
|
{
|
|
public class Rents
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public virtual Car Car { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
public virtual User User { get; set; }
|
|
}
|
|
}
|