Files
forkmessager/apps/server-net/src/Modules/Chats/Application/DTOs/CreateChatRequest.cs
Халимов Рустам 59e0cf7667 DDD
2026-03-19 00:59:01 +03:00

8 lines
220 B
C#

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<Guid> MemberIds);