Files
Discord.Net/ref/Entities/IModifiable.cs
2016-02-26 05:22:01 -04:00

12 lines
253 B
C#

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