using System; using System.Collections.Generic; using Knot.Modules.Chats.Domain; namespace Knot.Modules.Chats.Application.DTOs; public sealed record CreateChatRequest(string Name, ChatType Type, List MemberIds);