IdentityShroud/IdentityShroud.Api/Apis/Mappers/ClientMapper.cs

11 lines
264 B
C#
Raw Normal View History

2026-02-22 09:27:48 +01:00
using IdentityShroud.Core.Model;
using Riok.Mapperly.Abstractions;
namespace IdentityShroud.Api.Mappers;
[Mapper]
public partial class ClientMapper
{
[MapperIgnoreSource(nameof(Client.Secrets))]
public partial ClientRepresentation ToDto(Client client);
}