mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 16:31:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
14 lines
370 B
C#
Executable file
14 lines
370 B
C#
Executable file
using System;
|
|
|
|
namespace FSO.Server.Database.DA.Bonus
|
|
{
|
|
public class DbBonus
|
|
{
|
|
public int bonus_id { get; set; }
|
|
public uint avatar_id { get; set; }
|
|
public DateTime period { get; set; }
|
|
public int? bonus_visitor { get; set; }
|
|
public int? bonus_property { get; set; }
|
|
public int? bonus_sim { get; set; }
|
|
}
|
|
}
|