Files
forkmessager/backend/src/Contracts/Auth/Application/Abstractions/GetUsersExistence.cs
T

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