11 lines
264 B
C#
11 lines
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);
|
||
|
|
}
|