2022-04-03 13:34:55 +08:00
|
|
|
using System;
|
|
|
|
|
2022-04-03 14:47:54 +08:00
|
|
|
namespace BililiveRecorder.Web.Models.Rest
|
2022-04-03 13:34:55 +08:00
|
|
|
{
|
|
|
|
public class RoomDto
|
|
|
|
{
|
|
|
|
public Guid ObjectId { get; set; }
|
|
|
|
public int RoomId { get; set; }
|
|
|
|
public bool AutoRecord { get; set; }
|
|
|
|
public int ShortId { get; set; }
|
|
|
|
public string? Name { get; set; }
|
2023-07-08 16:14:45 +08:00
|
|
|
public long Uid { get; set; }
|
2022-04-03 13:34:55 +08:00
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? AreaNameParent { get; set; }
|
|
|
|
public string? AreaNameChild { get; set; }
|
|
|
|
public bool Recording { get; set; }
|
|
|
|
public bool Streaming { get; set; }
|
|
|
|
public bool DanmakuConnected { get; set; }
|
|
|
|
public bool AutoRecordForThisSession { get; set; }
|
2022-04-09 16:43:05 +08:00
|
|
|
public RoomRecordingStatsDto RecordingStats { get; set; } = default!;
|
|
|
|
public RoomIOStatsDto IoStats { get; set; } = default!;
|
2022-04-03 13:34:55 +08:00
|
|
|
}
|
|
|
|
}
|