using System; using System.Threading.Tasks; namespace Discord { public interface IModifiable { /// Modifies one or more of the properties of this object. Task Modify(Action func); } }