16 lines
328 B
C#
16 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class DtoRoom
|
|
{
|
|
public string id { get; set; }
|
|
public string team_name { get; set; }
|
|
public string project_name { get; set; }
|
|
public string check_room { get; set; }
|
|
}
|
|
}
|