Y2S2-Syski/syski_api/uk.co.syski.data/RAMModel.cs

22 lines
363 B
C#
Raw Normal View History

2020-06-09 20:02:14 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Syski.Data
{
public class RAMModel
{
public Guid Id { get; set; }
public Guid? ModelId { get; set; }
public Model Model { get; set; }
public long Size { get; set; }
public IEnumerable<SystemRAM> SystemRAMs { get; set; }
}
}