mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-25 02:39:11 +00:00
11 lines
271 B
C#
11 lines
271 B
C#
|
namespace FSO.Server.Database.DA.Roommates
|
|||
|
{
|
|||
|
public class DbRoommate
|
|||
|
{
|
|||
|
public uint avatar_id { get; set; }
|
|||
|
public int lot_id { get; set; }
|
|||
|
public byte permissions_level { get; set; }
|
|||
|
public byte is_pending { get; set; }
|
|||
|
}
|
|||
|
}
|