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