19 lines
426 B
C#
19 lines
426 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.Models
|
|
{
|
|
public class HardwareReportArgs
|
|
{
|
|
public string HardwareFingerprint { get; set; } = string.Empty;
|
|
public string Key { get; set; } = string.Empty;
|
|
|
|
public double Value { get; set; }
|
|
|
|
public DateTime Time { get; set; } = DateTime.Now;
|
|
}
|
|
}
|