20 lines
380 B
C#
20 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_information
|
|
{
|
|
public data data { get; set; }
|
|
}
|
|
public class data
|
|
{
|
|
public string dev { get; set; }
|
|
public string m { get; set; }
|
|
public int v { get; set; }
|
|
}
|
|
}
|