mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 12:11:05 +00:00
11 lines
237 B
C#
11 lines
237 B
C#
namespace ServerManagerTool.Common.Interfaces
|
|
{
|
|
public interface IIniSectionCollection
|
|
{
|
|
IIniValuesCollection[] Sections { get; }
|
|
|
|
void Add(string sectionName, string[] values);
|
|
|
|
void Update();
|
|
}
|
|
}
|