You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
975 B
32 lines
975 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MauiApp1.Model
|
|
{
|
|
public class Partition
|
|
{
|
|
public string Nom { get; private set; }
|
|
public int IdPartition { get; private set; }
|
|
public string Auteur { get; private set; }
|
|
public int Complexite { get; private set; }
|
|
public string Description { get; private set; }
|
|
public string Instrument { get; private set; }
|
|
public string Son { get; private set; }
|
|
|
|
public Partition(string nom, int idPartition, string auteur, int complexite, string description, string instrument, string son)
|
|
{
|
|
Nom = nom;
|
|
IdPartition = idPartition;
|
|
Auteur = auteur;
|
|
Complexite = complexite;
|
|
Description = description;
|
|
Instrument = instrument;
|
|
Son = son;
|
|
}
|
|
|
|
}
|
|
}
|