25 lines
695 B
C#
25 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
|
|
namespace WhiteLagoon.Domain.Entities
|
|
{
|
|
public class VillaNumber
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
[Display(Name = "Villa Number")]
|
|
public int Villa_Number { get; set; }
|
|
|
|
[ForeignKey("Villa")]
|
|
public int VillaId { get; set; }
|
|
[ValidateNever]
|
|
public Villa Villa { get; set; }
|
|
public string? SpecialDetails { get; set; }
|
|
}
|
|
}
|