tijian_tieying/web/dccdc.Models/DtoRoom.cs

16 lines
328 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
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; }
}
}