14 lines
498 B
C#
14 lines
498 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Riok.Mapperly.Abstractions;
|
|
using Moonlight.Shared.Http.Requests.Users;
|
|
using Moonlight.Shared.Http.Responses.Users;
|
|
|
|
namespace Moonlight.Frontend.Mappers;
|
|
|
|
[Mapper]
|
|
[SuppressMessage("Mapper", "RMG020:No members are mapped in an object mapping")]
|
|
[SuppressMessage("Mapper", "RMG012:No members are mapped in an object mapping")]
|
|
public static partial class UserMapper
|
|
{
|
|
public static partial UpdateUserRequest MapToUpdate(UserResponse response);
|
|
} |