mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-15 05:14:15 +01:00
I don't know man, it's just too much
This commit is contained in:
parent
f6fbb4c862
commit
2b53c6a824
8 changed files with 381 additions and 93 deletions
24
MareSynchronosServer/MareSynchronos.API/CharacterCacheDto.cs
Normal file
24
MareSynchronosServer/MareSynchronos.API/CharacterCacheDto.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MareSynchronos.API
|
||||
{
|
||||
public class CharacterCacheDto
|
||||
{
|
||||
public List<FileReplacementDto> FileReplacements { get; set; } = new();
|
||||
public string GlamourerData { get; set; }
|
||||
public string Hash { get; set; }
|
||||
public int JobId { get; set; }
|
||||
}
|
||||
|
||||
public class FileReplacementDto
|
||||
{
|
||||
public string[] GamePaths { get; set; } = Array.Empty<string>();
|
||||
public string Hash { get; set; }
|
||||
public string ImcData { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -4,4 +4,8 @@
|
|||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue