14 lines
523 B
C#
14 lines
523 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using MoonlightServers.Daemon.Helpers;
|
|
using MoonlightServers.DaemonShared.Http.Daemon;
|
|
using Riok.Mapperly.Abstractions;
|
|
|
|
namespace MoonlightServers.Daemon.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 SystemStatisticsMapper
|
|
{
|
|
public static partial SystemStatisticsDto ToDto(SystemMetrics.SystemSnapshot snapshot);
|
|
} |