AppSAV/MauiAppStock/Models/Appareil.cs
Yann ASTIER 8d8578a059 Ajout :
- Suivi des mouvements stocks (table, crud, vue)
- Placeholder pour picker fournisseur (vue)
- Historique des mouvements stock (vue)
2025-04-08 11:21:14 +02:00

20 lines
438 B
C#

using SQLite;
namespace MauiAppStock.Models
{
public class Appareil
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string Nom { get; set; }
public string Description { get; set; }
// Vous pouvez ajouter d'autres propriétés (stock, historique, etc.)
public override string ToString()
{
return $"{Nom}";
}
}
}