HegreHotel/Models/Chambre.cs
2025-03-13 17:49:25 +01:00

19 lines
319 B
C#

namespace HegreHotel.Models;
using SQLite;
public class Chambre
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
[MaxLength(50)]
public string? Nom { get; set; }
public string? Description { get; set; }
public decimal Tarif { get; set; }
public int NbPersonne { get; set; }
}