using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Discord.Overrides { /// /// Represents context that's passed to an override in the initialization step. /// public sealed class OverrideContext { /// /// A callback used to log messages. /// public Action Log { get; private set; } /// /// The info about the override. /// public Override Info { get; private set; } internal OverrideContext(Action log, Override info) { Log = log; Info = info; } } }