11 lines
397 B
C#
11 lines
397 B
C#
using MoonlightServers.ApiServer.Database.Entities;
|
|
using MoonlightServers.Shared.Http.Responses.Admin.ServerVariables;
|
|
using Riok.Mapperly.Abstractions;
|
|
|
|
namespace MoonlightServers.ApiServer.Mappers;
|
|
|
|
[Mapper(AllowNullPropertyAssignment = false)]
|
|
public static partial class ServerVariableMapper
|
|
{
|
|
public static partial ServerVariableResponse ToAdminResponse(ServerVariable serverVariable);
|
|
} |