12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using Hotline.Share.Enums.Quality;
- using Lucene.Net.Search;
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Hotline.Share.Dtos
- {
- /// <summary>
- /// 转写
- /// </summary>
- public class Transfer
- {
- public Transfer()
- {
- }
- public Transfer(EQualityTransferType type, string content,string reviseContent, int sort,string prohibited)
- {
- Type = type;
- Content = content;
- ReviseContent = reviseContent;
- Sort = sort;
- Prohibited = prohibited;
- }
- /// <summary>
- /// 转写类型
- /// </summary>
- public EQualityTransferType Type { get; set; }
- /// <summary>
- /// 转写内容
- /// </summary>
- public string? Content { get; set; }
- /// <summary>
- /// 转写修改后内容
- /// </summary>
- public string? ReviseContent { get; set; }
- /// <summary>
- /// 排序
- /// </summary>
- public int Sort { get; set; }
- /// <summary>
- /// 违禁词
- /// </summary>
- public string? Prohibited { get; set; }
- }
- }
|