ServerManagers/src/ServerManager.Common/Interfaces/IIniValuesCollection.cs
2021-01-07 16:23:23 +10:00

14 lines
350 B
C#

using System.Collections.Generic;
namespace ServerManagerTool.Common.Interfaces
{
public interface IIniValuesCollection
{
string IniCollectionKey { get; }
bool IsArray { get; }
bool IsEnabled { get; set; }
void FromIniValues(IEnumerable<string> values);
IEnumerable<string> ToIniValues();
}
}