Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Endpoints/Chats/GetConversationDto.cs
T
2024-04-08 11:41:48 +03:00

7 lines
154 B
C#

namespace Application.Endpoints.Chats;
public class GetConversationDto
{
public Guid IdUser1 { get; set; }
public Guid IdUser2 { get; set; }
}