AddRowPayload.cs 291 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace LocalizationTool.Models
  3. {
  4. /// <summary>AI 生成的"添加行"指令载荷。</summary>
  5. public class AddRowPayload
  6. {
  7. public string Key { get; set; }
  8. public Dictionary<string, string> Translations { get; set; }
  9. }
  10. }