mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 09:52:23 +00:00
11 lines
252 B
C#
11 lines
252 B
C#
|
namespace FSO.Server.Database.DA.DbChanges
|
|||
|
{
|
|||
|
public class DbChange
|
|||
|
{
|
|||
|
public string id { get; set; }
|
|||
|
public string filename { get; set; }
|
|||
|
public uint date { get; set; }
|
|||
|
public string hash { get; set; }
|
|||
|
}
|
|||
|
}
|