Add admin page for sound by machine.

This commit is contained in:
2019-05-19 16:22:21 +01:00
parent 20da3251f8
commit 7fd00f85d8
9 changed files with 338 additions and 1 deletions

View File

@@ -28,6 +28,8 @@
// Copyright © 2003-2018 Natalia Portillo
*******************************************************************************/
using System.ComponentModel;
namespace Cicm.Database.Models
{
public class SoundByMachine
@@ -37,6 +39,7 @@ namespace Cicm.Database.Models
public long Id { get; set; }
public virtual Machine Machine { get; set; }
[DisplayName("Sound synthetizer")]
public virtual SoundSynth SoundSynth { get; set; }
}
}