17 lines
335 B
C#
17 lines
335 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Request.Course
|
|
{
|
|
public class CourseItemReq
|
|
{
|
|
/// <summary>
|
|
/// 课程系列ID
|
|
/// </summary>
|
|
public Guid MainId { get; set; }
|
|
}
|
|
}
|