mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-29 07:39:17 +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
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
namespace MareSynchronosServer.Models
|
||||
{
|
||||
public class Visibility
|
||||
{
|
||||
public string CID { get; set; }
|
||||
public string OtherCID { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue