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
2023-03-23 13:56:49 +02:00

15 lines
507 B
C#

namespace Classes;
class Motherboard : Detail
{
public required string RamType { get; set; }
public required int RamSlots { get; set; }
public int UsedRamSlots { get; set; }
public required string Socket { get; set; }
public required int CpuSlots { get; set; }
public int UsedCpuSlots { get; set; }
public required int PataSlots { get; set; }
public int UsedPataSlots {get; set; }
public required int SataSlots { get; set; }
public int UsedSataSlots { get; set; }
}