LyricFileExt.cs 392 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using Newtonsoft.Json;
  3. namespace BeatLyrics.Tool.Models
  4. {
  5. internal class LyricFileExt
  6. {
  7. public List<LyricDetailExt> Main { get; set; }
  8. public List<LyricDetailExt> Subtitle { get; set; }
  9. [JsonIgnore]
  10. public string MainText { get; set; }
  11. [JsonIgnore]
  12. public string SubtitleText { get; set; }
  13. }
  14. }