This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/Ellie.Bot.Common/_common/LbOpts.cs
2023-08-03 15:11:17 +12:00

14 lines
No EOL
293 B
C#

#nullable disable
using CommandLine;
namespace Ellie.Common;
public class LbOpts : IEllieCommandOptions
{
[Option('c', "clean", Default = false, HelpText = "Only show users who are on the server.")]
public bool Clean { get; set; }
public void NormalizeOptions()
{
}
}