Files
2024-05-21 12:10:53 +03:00

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;
}