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.

17 lines
415 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 DateTime date { get; set; }
public string ImageBase64 { get; set; }
public string songName { get; set; }
}
}