mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
with corresponding GPUs, memory, processors, sound synths and storage related tables.
15 lines
473 B
C#
15 lines
473 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Cicm.Database.Models
|
|
{
|
|
public class StorageByOwnedMachine : BaseModel<long>
|
|
{
|
|
public long OwnedMachineId { get; set; }
|
|
public StorageType Type { get; set; }
|
|
public StorageInterface Interface { get; set; }
|
|
[Range(1, long.MaxValue)]
|
|
public long Capacity { get; set; }
|
|
|
|
public virtual OwnedMachine OwnedMachine { get; set; }
|
|
}
|
|
} |