mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
17 lines
493 B
C#
Executable file
17 lines
493 B
C#
Executable file
namespace FSO.Server.Database.DA.AvatarClaims
|
|
{
|
|
public class DbAvatarClaim
|
|
{
|
|
public int avatar_claim_id { get; set; }
|
|
public uint avatar_id { get; set; }
|
|
public string owner { get; set; }
|
|
public uint location { get; set; }
|
|
}
|
|
public class DbAvatarActive
|
|
{
|
|
public uint avatar_id { get; set; }
|
|
public string name { get; set; }
|
|
public byte privacy_mode { get; set; }
|
|
public uint location { get; set; }
|
|
}
|
|
}
|