Files
marechai/Cicm.Database/Models/SoundByOwnedMachine.cs
Natalia Portillo 3813ad80cf Move old owned_computers and owned_consoles tables to a new OwnedMachines table
with corresponding GPUs, memory, processors, sound synths and storage related tables.
2019-05-29 21:13:09 +01:00

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; }
}
}