mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 19:56:22 +00:00
14 lines
350 B
C#
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();
|
|
}
|
|
}
|