mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
10 lines
309 B
C#
10 lines
309 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|