mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
11 lines
304 B
C#
11 lines
304 B
C#
namespace Azaion.CommonSecurity.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!;
|
|
} |