mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 16:31:21 +00:00
15 lines
370 B
C#
15 lines
370 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|