You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
482 B
23 lines
482 B
|
5 years ago
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace MacManagerForTemPatch
|
||
|
|
{
|
||
|
|
class Data
|
||
|
|
{
|
||
|
|
public string MacAddr;
|
||
|
|
public string Write_Date;
|
||
|
|
public string Write_Time;
|
||
|
|
|
||
|
|
public Data(string macAddr, string write_Date, string write_Time)
|
||
|
|
{
|
||
|
|
MacAddr = macAddr;
|
||
|
|
Write_Date = write_Date;
|
||
|
|
Write_Time = write_Time;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|