22 lines
445 B
C#
22 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Video
|
|
{
|
|
public class SyncCourseNameReq
|
|
{
|
|
/// <summary>
|
|
/// 课程id
|
|
/// </summary>
|
|
public long CourseId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 课程名称
|
|
/// </summary>
|
|
public string CourseName { get; set; }
|
|
}
|
|
}
|