This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Stanislav_Mykhailenko/Lesson_3/Task_1/Classes/Motherboard.cs

16 lines
449 B
C#
Raw Normal View History

2023-03-22 22:07:12 +00:00
namespace Classes;
class Motherboard : Detail
{
public string RamType { get; set; }
public int RamSlots { get; set; }
public int UsedRamSlots {get; set; }
public string Socket { get; set; }
public int CpuSlots {get; set; }
public int UsedCpuSlots {get; set; }
public int PataSlots { get; set; }
public int UsedPataSlots {get; set; }
public int SataSlots { get; set; }
public int UsedSataSlots {get; set; }
}