1
0
mirror of synced 2024-12-02 17:57:18 +01:00
GC-local-server-rewrite/Application/Mappers/MusicMapper.cs
2023-02-16 16:53:02 +08:00

12 lines
280 B
C#

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