mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 12:11:05 +00:00
9 lines
200 B
C#
9 lines
200 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ServerManagerTool.Common.Interfaces
|
|
{
|
|
public interface IIniValuesList
|
|
{
|
|
IEnumerable<string> ToIniValues(object excludeIfValue);
|
|
}
|
|
}
|