1
0
mirror of synced 2025-02-16 10:52:34 +01:00
TaikoLocalServer/Application/Mappers/SongPlayDataMapper.cs
2024-11-20 01:15:21 +08:00

12 lines
338 B
C#

using Riok.Mapperly.Abstractions;
namespace Application.Mappers;
[Mapper]
public static partial class SongPlayDataMapper
{
[MapperIgnoreSource(nameof(entity.Id))]
[MapperIgnoreSource(nameof(entity.Baid))]
[MapperIgnoreSource(nameof(entity.Ba))]
public static partial SongPlayDatumDto MapToDto(SongPlayDatum entity);
}