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/EllieBot/_common/LbOpts.cs

14 lines
296 B
C#
Raw Normal View History

2024-09-20 11:23:21 +00:00
#nullable disable
using CommandLine;
namespace EllieBot.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()
{
}
}