36 lines
876 B
C#
36 lines
876 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.Live
|
|
{
|
|
public class LiveSearchCourseSummaryDto
|
|
{
|
|
/// <summary>
|
|
/// 课程ID
|
|
/// </summary>
|
|
[JsonPropertyName("scheduleid")]
|
|
public int? Scheduleid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 直播开始日期
|
|
/// </summary>
|
|
[JsonPropertyName("living_date_from")]
|
|
public string? LivingDateFrom { get; set; }
|
|
|
|
/// <summary>
|
|
/// 直播结束日期
|
|
/// </summary>
|
|
[JsonPropertyName("living_date_to")]
|
|
public string? LivingDateTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 课程日期
|
|
/// </summary>
|
|
[JsonPropertyName("living_date")]
|
|
public string? LivingDate { get; set; }
|
|
}
|
|
}
|