using MediatR; namespace ZeroFramework.DeviceCenter.Application.Infrastructure { public class IdentifiedCommand(TRequest command, string id) : IRequest where TRequest : IRequest { public TRequest Command { get; } = command; public string Id { get; } = id; } }