22 lines
557 B
C#
22 lines
557 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Request.LiveVideo
|
|||
|
{
|
|||
|
public class LiveInfoRequest
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 起始拉取房间,start = 0 表示从第 1 个房间开始拉取
|
|||
|
/// </summary>
|
|||
|
public int start { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 每次拉取的个数上限,不要设置过大,建议 100 以内
|
|||
|
/// </summary>
|
|||
|
public int limit { get; set; }
|
|||
|
}
|
|||
|
}
|