1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Application/Mappers/MusicMapper.cs

12 lines
280 B
C#
Raw Normal View History

2023-02-16 09:53:02 +01:00
using Domain.Entities;
using Riok.Mapperly.Abstractions;
namespace Application.Mappers;
[Mapper]
public static partial class MusicMapper
{
public static partial MusicDto MusicToDto(this MusicUnlock music);
private static int BoolToInt(bool value) => value ? 1 : 0;
}