namespace Discord.Net.Models
{
///
/// Declares an enum which represents the default message notification level for a .
///
///
///
///
public enum DefaultMessageNotificationLevel
{
///
/// s will receive notifications for all s by default.
///
AllMessages = 0,
///
/// s will receive notifications only for s that @mention them by default.
///
OnlyMentions = 1,
}
}