mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 17:32:23 +00:00
10 lines
221 B
C#
10 lines
221 B
C#
|
namespace FSO.Server.Database.DA.DynPayouts
|
|||
|
{
|
|||
|
public class DbTransSummary
|
|||
|
{
|
|||
|
public int transaction_type { get; set; }
|
|||
|
public int value { get; set; }
|
|||
|
public int sum { get; set; }
|
|||
|
}
|
|||
|
}
|