using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { /// /// 查询 /// public class QueryDelegationEnDataDto { /// /// 区域 /// public string Area { get; set; } /// /// 职务 /// public string Job { get; set; } } /// /// 团组英文资料操作 /// public class OpDelegationEnDataDto:OpBaseDto { /// /// 区域 /// public string Area { get; set; } /// /// 职务 /// public string Job { get; set; } /// /// 职务英文 /// public string JobEn { get; set; } /// /// 背景 /// public string DelegationSetting { get; set; } /// /// 背景英文 /// public string DelegationSettingEn { get; set; } } public class QueryDelegationEnDataByIdDto { /// /// 待翻译的文本 /// public int Id { get; set; } } }