8 lines
220 B
C#
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);
|