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
507 B
C#
Raw Normal View History

2023-03-22 22:07:12 +00:00
namespace Classes;
class Motherboard : Detail
{
2023-03-23 11:56:49 +00:00
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; }
2023-03-22 22:07:12 +00:00
public int UsedPataSlots {get; set; }
2023-03-23 11:56:49 +00:00
public required int SataSlots { get; set; }
public int UsedSataSlots { get; set; }
2023-03-22 22:07:12 +00:00
}