using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Complaint.Domain.Dto
{
public class LiveAuditDetailDto
{
public int Id { get; set; }
///
/// 直播链接
///
public string? LiveUrl { get; set; }
///
/// 直播信息
///
public string? LiveRoomInfo { get; set; }
///
///
///
public LiveAuditStatus AuditStatus { get; set; }
///
/// 整改附件
///
public string? RectificationAccessory { get; set; }
///
/// 整改备注
///
public string? RectificationRemark { get; set; }
///
/// 直播课程id
///
public int? ScheduleId { get; set; }
///
/// 直播日期
///
public string? LiveDate { get; set; }
}
}