8 lines
211 B
C#
8 lines
211 B
C#
using Knot.Shared.Kernel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Knot.Contracts.Auth.Application.Abstractions;
|
|
|
|
public record GetUsersExistenceQuery(List<Guid> UserIds) : IQuery<List<Guid>>;
|