IdentityShroud/IdentityShroud.Api/Apis/Mappers/ClientMapper.cs
2026-02-22 09:27:57 +01:00

11 lines
No EOL
264 B
C#

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