7 lines
157 B
C#
7 lines
157 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Knot.Modules.Chats.Application.DTOs;
|
|
|
|
public sealed record AddMembersRequest(List<Guid> UserIds);
|