using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AI.Common.Dtos
{
public class QuestionLogDto
{
///
/// 备 注:内容
/// 默认值:
///
public string Content { get; set; }
///
/// 备 注:类型 1:文本 2:图片 3:文件
/// 默认值:
///
public int Type { get; set; }
///
/// 备 注:发生时间戳
/// 默认值:
///
public long Timestamp { get; set; }
}
}