0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-07-04 04:22:56 +00:00
CleanArchitecture/CleanArchitecture.Application/Queries/Tenants/GetTenantById/GetTenantByIdQuery.cs
2023-09-01 23:43:08 +02:00

7 lines
242 B
C#

using System;
using CleanArchitecture.Application.ViewModels.Tenants;
using MediatR;
namespace CleanArchitecture.Application.Queries.Tenants.GetTenantById;
public sealed record GetTenantByIdQuery(Guid TenantId) : IRequest<TenantViewModel?>;