api adjustments
This commit is contained in:
@@ -8,7 +8,7 @@ namespace MareSynchronos.API
|
||||
{
|
||||
public class Api
|
||||
{
|
||||
public const int Version = 5;
|
||||
public const int Version = 6;
|
||||
public const string Path = "/mare";
|
||||
|
||||
public const string SendFileAbortUpload = "AbortUpload";
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace MareSynchronos.API
|
||||
{
|
||||
public record CharacterCacheDto
|
||||
{
|
||||
public ObjectKind ObjectKind { get; set; }
|
||||
public List<FileReplacementDto> FileReplacements { get; set; } = new();
|
||||
public string GlamourerData { get; set; }
|
||||
public string ManipulationData { get; set; }
|
||||
|
||||
16
MareSynchronosAPI/ObjectKind.cs
Normal file
16
MareSynchronosAPI/ObjectKind.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MareSynchronos.API
|
||||
{
|
||||
public enum ObjectKind
|
||||
{
|
||||
Player = 0,
|
||||
Minion = 1,
|
||||
Companion = 2,
|
||||
Pet = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user