mirror of
https://github.com/azaion/admin.git
synced 2026-04-23 02:56:34 +00:00
f5e466108a
add ToHash for encryption Key
11 lines
320 B
C#
11 lines
320 B
C#
namespace Azaion.Common.Entities;
|
|
|
|
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!;
|
|
} |