I don't know man, it's just too much

This commit is contained in:
Stanley Dimant 2022-06-19 01:56:42 +02:00
parent f6fbb4c862
commit 2b53c6a824
8 changed files with 381 additions and 93 deletions

View file

@ -0,0 +1,14 @@
using System.Collections.Generic;
using MareSynchronos.API;
namespace MareSynchronosServer.Models
{
public class CharacterData
{
public string UserId { get; set; }
public int JobId { get; set; }
public List<FileReplacementDto> EquipmentData { get; set; }
public string GlamourerData { get; set; }
public string Hash { get; set; }
}
}

View file

@ -0,0 +1,8 @@
namespace MareSynchronosServer.Models
{
public class Visibility
{
public string CID { get; set; }
public string OtherCID { get; set; }
}
}