Files
annotations/Azaion.Common/DTO/HardwareInfo.cs
T

11 lines
296 B
C#

namespace Azaion.Common.DTO;
public class HardwareInfo
{
public string CPU { get; set; } = null!;
public string GPU { get; set; } = null!;
public string MacAddress { get; set; } = null!;
public string Memory { get; set; } = null!;
public string Hash { get; set; } = null!;
}