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

12 lines
303 B
C#
Raw Normal View History

2023-02-16 09:53:02 +01:00
using Domain.Entities;
2023-02-13 17:38:19 +01:00
using Riok.Mapperly.Abstractions;
namespace Application.Mappers;
[Mapper]
public static partial class MusicExtraMapper
{
public static partial MusicExtraDto MusicExtraToDto(this MusicExtra musicExtra);
private static int BoolToInt(bool value) => value ? 1 : 0;
}