mirror of
https://onedev.fprog.nl/DiscordClient
synced 2025-12-29 12:28:37 +01:00
12 lines
242 B
C#
12 lines
242 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using CommandLine;
|
|
|
|
namespace DiscordDelete
|
|
{
|
|
[Verb("delete", HelpText = "Delete all saved messages.")]
|
|
public class DeleteOptions { }
|
|
}
|