mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
12 lines
239 B
C#
12 lines
239 B
C#
|
using System;
|
|||
|
|
|||
|
namespace FSO.Server.Database.DA.LotVisitTotals
|
|||
|
{
|
|||
|
public class DbLotVisitTotal
|
|||
|
{
|
|||
|
public int lot_id { get; set; }
|
|||
|
public DateTime date { get; set; }
|
|||
|
public int minutes { get; set; }
|
|||
|
}
|
|||
|
}
|