2025-07-21 16:09:02 +08:00

21 lines
458 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YD_WeChatApplet.Commons.Dto.HomeWork;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
/// <summary>
/// 付费课程列表
/// </summary>
public class PaidCoursesListDto : ComboBoxDto
{
/// <summary>
/// 是否购买
/// </summary>
public bool IsPurchase { get; set; }
}
}