mirror of https://github.com/hykilpikonna/AquaDX
14 lines
310 B
C#
14 lines
310 B
C#
![]() |
namespace AquaMai.Config.Interfaces;
|
|||
|
|
|||
|
public interface IConfigSerializer
|
|||
|
{
|
|||
|
public record Options
|
|||
|
{
|
|||
|
public string Lang { get; init; }
|
|||
|
public bool IncludeBanner { get; init; }
|
|||
|
public bool OverrideLocaleValue { get; init; }
|
|||
|
}
|
|||
|
|
|||
|
public string Serialize(IConfig config);
|
|||
|
}
|