mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
14 lines
395 B
C#
14 lines
395 B
C#
|
|
using System.ComponentModel;
|
||
|
|
|
||
|
|
namespace Cicm.Database.Models
|
||
|
|
{
|
||
|
|
public class SoundByOwnedMachine : BaseModel<long>
|
||
|
|
{
|
||
|
|
public int SoundSynthId { get; set; }
|
||
|
|
public long OwnedMachineId { get; set; }
|
||
|
|
|
||
|
|
public virtual OwnedMachine OwnedMachine { get; set; }
|
||
|
|
[DisplayName("Sound synthetizer")]
|
||
|
|
public virtual SoundSynth SoundSynth { get; set; }
|
||
|
|
}
|
||
|
|
}
|