mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
10 lines
217 B
C#
10 lines
217 B
C#
|
namespace FSO.Server.Database.DA.Objects
|
|||
|
{
|
|||
|
public class DbObjectAttribute
|
|||
|
{
|
|||
|
public uint object_id { get; set; }
|
|||
|
public int index { get; set; }
|
|||
|
public int value { get; set; }
|
|||
|
}
|
|||
|
}
|