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.
15 lines
363 B
15 lines
363 B
namespace ProjetBlazor.Modeles
|
|
{
|
|
public class Musique
|
|
{
|
|
public int id { get; set; }
|
|
public string titre { get; set; }
|
|
public string auteur { get; set; }
|
|
public int duree { get; set; }
|
|
public string genre { get; set; }
|
|
public string image { get; set; }
|
|
public DateTime date { get; set; }
|
|
|
|
}
|
|
}
|