18 lines
441 B
C#
18 lines
441 B
C#
using SQLite;
|
|
|
|
namespace MauiAppStock.Models
|
|
{
|
|
public class AppareilPiece
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int Id { get; set; }
|
|
public int AppareilId { get; set; }
|
|
public int PieceId { get; set; }
|
|
public bool EstRecommandee { get; set; }
|
|
|
|
[Ignore]
|
|
public string NomPiece { get; set; }
|
|
[Ignore]
|
|
public string DescriptionPiece { get; set; }
|
|
}
|
|
} |