using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.Base.SettingModel { public class CustomTxtModel { public List customTxts1 { get; set; } public List customTxts2 { get; set; } public List customTxts3 { get; set; } public class CustomTxt { public string customT { get; set; } } } }