using System.Threading.Tasks;
namespace Discord
{
///
/// Defines whether the object is updateable or not.
///
public interface IUpdateable
{
///
/// Updates this object's properties with its current state.
///
Task UpdateAsync(RequestOptions options = null);
}
}