ServerManagers/src/ServerManager.Common/Interfaces/IIniSectionCollection.cs
2021-12-16 00:21:23 +10:00

13 lines
283 B
C#

using System.Collections.Generic;
namespace ServerManagerTool.Common.Interfaces
{
public interface IIniSectionCollection
{
IIniValuesCollection[] Sections { get; }
void Add(string sectionName, IEnumerable<string> values);
void Update();
}
}