2025-04-03 15:53:45 +02:00

18 lines
449 B
C#

using SQLite;
namespace MauiAppStock.Models
{
public class Piece
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string Nom { get; set; }
public string Description { get; set; }
public double Prix { get; set; }
public int Stock { get; set; }
public string Fournisseur { get; set; }
[Ignore]
public bool EstRecommandee { get; set; }
}
}