Allow to add and remove sound synthesizers from machine details in admin view.

This commit is contained in:
2020-05-29 02:35:09 +01:00
parent 7cf5058f9b
commit fdc371bee3
12 changed files with 236 additions and 350 deletions

View File

@@ -0,0 +1,10 @@
namespace Marechai.ViewModels
{
public class SoundSynthByMachineViewModel : BaseViewModel<long>
{
public int SoundSynthId { get; set; }
public int MachineId { get; set; }
public string CompanyName { get; set; }
public string Name { get; set; }
}
}