1
0
mirror of synced 2025-03-01 16:00:28 +01:00
2023-02-14 00:38:19 +08:00

13 lines
326 B
C#

using Application.Dto;
using Domain.Entities;
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;
}