Files
Ragon/Ragon.Server/Sources/Plugin/Web/Request/RoomRemovedRequest.cs
T

9 lines
154 B
C#
Raw Normal View History

2023-04-13 20:42:05 +04:00
using Ragon.Server.Plugin.Web;
2023-04-09 10:52:18 +04:00
namespace Ragon.Server.Plugin.Web;
[Serializable]
public class RoomRemovedRequest
{
2023-04-13 20:42:05 +04:00
public RoomDto Room { get; set; }
2023-04-09 10:52:18 +04:00
}