mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +00:00
9 lines
184 B
C#
9 lines
184 B
C#
namespace Robin.Options;
|
|
|
|
public sealed class PositionPersistenceOptions
|
|
{
|
|
public const string SectionName = "PositionPersistence";
|
|
|
|
public string? FilePath { get; set; }
|
|
}
|