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.
21 lines
459 B
21 lines
459 B
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.JSInterop;
|
|
using ProjetBlazor.Modeles;
|
|
using System.Collections.ObjectModel;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace ProjetBlazor.Components
|
|
{
|
|
public partial class DragAndDrop
|
|
{
|
|
[Parameter]
|
|
public Musique Recipe { get; set; }
|
|
|
|
public Musique CurrentDragMusique { get; set; }
|
|
|
|
[Parameter]
|
|
public List<Musique> ListMusique { get; set; }
|
|
|
|
}
|
|
}
|