mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
9 lines
170 B
C#
9 lines
170 B
C#
|
namespace BililiveRecorder.Web.Models
|
||
|
{
|
||
|
public class CreateRoomDto
|
||
|
{
|
||
|
public int RoomId { get; set; }
|
||
|
public bool AutoRecord { get; set; }
|
||
|
}
|
||
|
}
|