12 lines
310 B
C#
12 lines
310 B
C#
|
namespace BITKit
|
|||
|
{
|
|||
|
public class DeviceModel
|
|||
|
{
|
|||
|
public const string Get = "GetDeivceModel";
|
|||
|
public string Name=string.Empty;
|
|||
|
public string CPU = string.Empty;
|
|||
|
public string GPU = string.Empty;
|
|||
|
public int RAM;
|
|||
|
public string System = string.Empty;
|
|||
|
}
|
|||
|
}
|