25 lines
485 B
C#
25 lines
485 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CarRentContracts.SearchModels
|
|||
|
{
|
|||
|
public class RentalSearchModel
|
|||
|
{
|
|||
|
public DateTime? StartDate { get; set; }
|
|||
|
|
|||
|
public DateTime? EndDate { get; set; }
|
|||
|
|
|||
|
public double? RentalCost { get; set; }
|
|||
|
|
|||
|
public string? ReviewText { get; set; }
|
|||
|
|
|||
|
public int? ReviewRating { get; set; }
|
|||
|
public int? ClientId { get; set; }
|
|||
|
|
|||
|
public int? Id { get; set; }
|
|||
|
}
|
|||
|
}
|