1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/Application/Mappers/SongHistoryDataMapper.cs
2024-11-20 01:15:21 +08:00

12 lines
424 B
C#

using System.Diagnostics.CodeAnalysis;
using Riok.Mapperly.Abstractions;
namespace Application.Mappers;
[Mapper]
[SuppressMessage("Mapper", "RMG020:Source member is not mapped to any target member")]
[SuppressMessage("Mapper", "RMG012:Source member was not found for target member")]
public static partial class SongHistoryDataMapper
{
public static partial SongHistoryData ToSongHistoryData(SongPlayDatum datum);
}