19 lines
386 B
C#
19 lines
386 B
C#
|
using SQLite;
|
|||
|
|
|||
|
namespace MauiApp1.Model
|
|||
|
{
|
|||
|
public class Fournisseur
|
|||
|
{
|
|||
|
[PrimaryKey, AutoIncrement]
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
[NotNull]
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public string Email { get; set; }
|
|||
|
|
|||
|
public string Telephone { get; set; }
|
|||
|
|
|||
|
public string Address { get; set; }
|
|||
|
}
|
|||
|
}
|