HegreHotel/Models/Chambre.cs

19 lines
324 B
C#
Raw Normal View History

2025-01-16 17:50:56 +01:00
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 NombrePersonnes { get; set; }
}