13 lines
317 B
C#
13 lines
317 B
C#
using WhiteLagoon.Domain.Entities;
|
|
|
|
namespace WhiteLagoon.Web.ViewModels
|
|
{
|
|
public class HomeVM
|
|
{
|
|
public IEnumerable<Villa>? VillaList { get; set; }
|
|
public DateOnly CheckInDate { get; set; }
|
|
public DateOnly? CheckOutDate { get; set; }
|
|
public int Nights { get; set; }
|
|
}
|
|
}
|