mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
10 lines
No EOL
213 B
C#
10 lines
No EOL
213 B
C#
using System;
|
|
|
|
namespace MareSynchronos.API
|
|
{
|
|
public record FileReplacementDto
|
|
{
|
|
public string[] GamePaths { get; set; } = Array.Empty<string>();
|
|
public string Hash { get; set; }
|
|
}
|
|
} |