* add messagepack attributes * fix isnullorempty * bump api version --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
11 lines
342 B
C#
11 lines
342 B
C#
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Data;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public class FileReplacementData : HashableDataBase
|
|
{
|
|
public string[] GamePaths { get; set; } = Array.Empty<string>();
|
|
public string Hash { get; set; } = string.Empty;
|
|
public string FileSwapPath { get; set; } = string.Empty;
|
|
} |