using System.Threading.Tasks;
namespace Discord
{
///
/// Determines whether the object is deletable or not.
///
public interface IDeletable
{
///
/// Deletes this object and all its children.
///
/// The options to be used when sending the request.
Task DeleteAsync(RequestOptions options = null);
}
}