mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
13 lines
283 B
C#
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();
|
|
}
|
|
}
|