mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-26 03:09:10 +00:00
11 lines
257 B
C#
11 lines
257 B
C#
|
namespace FSO.Server.Database.DA.DynPayouts
|
|||
|
{
|
|||
|
public class DbDynPayout
|
|||
|
{
|
|||
|
public int day { get; set; }
|
|||
|
public int skilltype { get; set; }
|
|||
|
public float multiplier { get; set; }
|
|||
|
public int flags { get; set; }
|
|||
|
}
|
|||
|
}
|