18 lines
449 B
C#
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; }
|
|
}
|
|
} |