mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 02:52:56 +00:00
7 lines
258 B
C#
7 lines
258 B
C#
using System;
|
|
using CleanArchitecture.Application.ViewModels.Tenants;
|
|
using MediatR;
|
|
|
|
namespace CleanArchitecture.Application.Queries.Tenants.GetTenantById;
|
|
|
|
public sealed record GetTenantByIdQuery(Guid TenantId, bool IsDeleted) : IRequest<TenantViewModel?>; |