mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Use enumerations in EF models.
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
{
|
||||
public class StorageByMachine
|
||||
{
|
||||
public int MachineId { get; set; }
|
||||
public int Type { get; set; }
|
||||
public int Interface { get; set; }
|
||||
public long? Capacity { get; set; }
|
||||
public long Id { get; set; }
|
||||
public int MachineId { get; set; }
|
||||
public StorageType Type { get; set; }
|
||||
public StorageInterface Interface { get; set; }
|
||||
public long? Capacity { get; set; }
|
||||
public long Id { get; set; }
|
||||
|
||||
public Machines Machine { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user