using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KssSmaPlaLib.Ini { public class IniDto { public string Section { get; set; } = string.Empty; public string Key { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; } }