CustomTxtModel.cs 487 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PaintDotNet.Base.SettingModel
  7. {
  8. public class CustomTxtModel
  9. {
  10. public List<CustomTxt> customTxts1 { get; set; }
  11. public List<CustomTxt> customTxts2 { get; set; }
  12. public List<CustomTxt> customTxts3 { get; set; }
  13. public class CustomTxt
  14. {
  15. public string customT { get; set; }
  16. }
  17. }
  18. }