7 lines
196 B
C#
7 lines
196 B
C#
namespace Application.Endpoints.Chats.GetChats;
|
|
|
|
public class GetConversationsCommand
|
|
{
|
|
public Guid IdUser1 { get; set; } = Guid.Empty;
|
|
public Guid IdUser2 { get; set; } = Guid.Empty;
|
|
} |