8 lines
231 B
C#
8 lines
231 B
C#
using Knot.Shared.Kernel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Knot.Contracts.Relations.Application.Contacts;
|
|
|
|
public record CheckBlockedStatusQuery(Guid UserId, List<Guid> CandidateIds) : IQuery<List<Guid>>;
|