EonaCat_WindowsKeyViewer/EonaCat_WindowsKeyViewer/Models/Objects/WindowsInformation.cs

48 lines
1.2 KiB
C#
Raw Normal View History

2018-12-19 19:40:57 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EonaCat_WindowsKeyViewer.Models.Objects
{
internal class WindowsInformation
{
public string BuildNumber { get; set; } = "";
public string Caption { get; set; } = "";
public string CountryCode { get; set; } = "";
public string CSDVersion { get; set; } = "";
public string Description { get; set; } = "";
public string EncryptionLevel { get; set; } = "";
public string FreePhysicalMemory { get; set; } = "";
public string InstallDate { get; set; } = "";
public string LastBootUpTime { get; set; } = "";
public string NumberOfLicensedUsers { get; set; } = "";
public string Organization { get; set; } = "";
public string RegisteredUser { get; set; } = "";
public string SerialNumber { get; set; } = "";
public string ServicePackMajorVersion { get; set; } = "";
public string ServicePackMinorVersion { get; set; } = "";
public string TotalVirtualMemorySize { get; set; } = "";
public string TotalVisibleMemorySize { get; set; } = "";
public string Version { get; set; } = "";
}
}