19 lines
413 B
C#
19 lines
413 B
C#
using LearningOfficer.OA.Common.Request;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Video
|
|
{
|
|
public class VideoCollectionPageReq : PageRequest
|
|
{
|
|
/// <summary>
|
|
/// 搜索关键字
|
|
///</summary>
|
|
public string? SearchKey { get; set; }
|
|
}
|
|
}
|