13 lines
216 B
C#
13 lines
216 B
C#
using Knot.Modules.Chats.Domain;
|
|
using System;
|
|
|
|
namespace Knot.Modules.Chats.Application.DTOs;
|
|
|
|
public record ChatMemberDto(
|
|
Guid Id,
|
|
Guid UserId,
|
|
string Role,
|
|
bool IsPinned,
|
|
ChatUserDto? User
|
|
);
|