| @@ -39,7 +39,7 @@ namespace Discord | |||||
| /// flag of the <see cref="AllowedTypes"/> property. If the flag is set, the value of this property | /// flag of the <see cref="AllowedTypes"/> property. If the flag is set, the value of this property | ||||
| /// must be <c>null</c> or empty. | /// must be <c>null</c> or empty. | ||||
| /// </summary> | /// </summary> | ||||
| public List<ulong> RoleIds { get; set; } | |||||
| public List<ulong> RoleIds { get; set; } = new List<ulong>(); | |||||
| /// <summary> | /// <summary> | ||||
| /// Gets or sets the list of all user ids that will be mentioned. | /// Gets or sets the list of all user ids that will be mentioned. | ||||
| @@ -47,7 +47,7 @@ namespace Discord | |||||
| /// flag of the <see cref="AllowedTypes"/> property. If the flag is set, the value of this property | /// flag of the <see cref="AllowedTypes"/> property. If the flag is set, the value of this property | ||||
| /// must be <c>null</c> or empty. | /// must be <c>null</c> or empty. | ||||
| /// </summary> | /// </summary> | ||||
| public List<ulong> UserIds { get; set; } | |||||
| public List<ulong> UserIds { get; set; } = new List<ulong>(); | |||||
| /// <summary> | /// <summary> | ||||
| /// Initializes a new instance of the <see cref="AllowedMentions"/> class. | /// Initializes a new instance of the <see cref="AllowedMentions"/> class. | ||||