Files
Servers/MoonlightServers.Shared/Admin/Nodes/NodeDto.cs

9 lines
189 B
C#

namespace MoonlightServers.Shared.Admin.Nodes;
public record NodeDto(
int Id,
string Name,
string HttpEndpointUrl,
DateTimeOffset CreatedAt,
DateTimeOffset UpdatedAt
);