17 lines
380 B
C#
17 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection.Metadata.Ecma335;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WGShare.Domain.DTOs.Room
|
|
{
|
|
public class RoomManagerInputDTO
|
|
{
|
|
public string RoomId { get; set; }
|
|
public string RoomNum { get; set; }
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|