From 53d30eea07b8b0352b14e52a052aea1dc228abfb Mon Sep 17 00:00:00 2001 From: javierdfm Date: Wed, 8 Oct 2025 08:51:47 +0200 Subject: [PATCH] feat: [CHA-1300] add count messages on channel type --- src/Models/ChannelType.cs | 2 ++ 1 file changed, 2 insertions(+) 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")]