mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
360 B
C#
12 lines
360 B
C#
|
|
using Marechai.Database;
|
||
|
|
|
||
|
|
namespace Marechai.ViewModels
|
||
|
|
{
|
||
|
|
public class StorageByMachineViewModel : BaseViewModel<long>
|
||
|
|
{
|
||
|
|
public int MachineId { get; set; }
|
||
|
|
public StorageType Type { get; set; }
|
||
|
|
public StorageInterface Interface { get; set; }
|
||
|
|
public long? Capacity { get; set; }
|
||
|
|
}
|
||
|
|
}
|