23 lines
520 B
C#
23 lines
520 B
C#
using DataService.BLL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_big_screen
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<big_screenData> data { get; set; }
|
|
}
|
|
public class big_screenData
|
|
{
|
|
public string Device { get; set; }
|
|
public string Place { get; set; }
|
|
public string time { get; set; }
|
|
}
|
|
}
|