diff --git a/src/Models/ChannelType.cs b/src/Models/ChannelType.cs index d95f78a8..47eada6b 100644 --- a/src/Models/ChannelType.cs +++ b/src/Models/ChannelType.cs @@ -58,6 +58,7 @@ public abstract class ChannelTypeRequestBase public bool? PushNotifications { get; set; } public string Blocklist { get; set; } public ModerationBehaviour? BlocklistBehavior { get; set; } + public bool? CountMessages { get; set; } [Obsolete("Use V2 Permissions APIs instead. " + "See https://getstream.io/chat/docs/dotnet-csharp/migrating_from_legacy/?language=csharp")] @@ -103,6 +104,7 @@ public abstract class ChannelTypeResponseBase : ApiResponse public bool? PushNotifications { get; set; } public string Blocklist { get; set; } public ModerationBehaviour? BlocklistBehavior { get; set; } + public bool? CountMessages { get; set; } [Obsolete("Use V2 Permissions APIs instead. " + "See https://getstream.io/chat/docs/dotnet-csharp/migrating_from_legacy/?language=csharp")]