using System; namespace DiscordBot { internal interface IStartupAction { string Command { get; init; } Action RunAction { get; init; } } }