1
0
mirror of synced 2025-02-19 20:23:23 +01:00
TaikoLocalServer/Application/Mappers/SongPlayDataMapper.cs

12 lines
338 B
C#
Raw Normal View History

2024-11-20 01:15:21 +08:00
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);
}