2021-03-22 12:09:25 -04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2018-02-09 02:21:25 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.Models.Server
|
2018-02-09 02:21:25 -05:00
|
|
|
|
{
|
|
|
|
|
public class EFServerStatistics : SharedEntity
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int StatisticId { get; set; }
|
2018-11-27 19:31:48 -05:00
|
|
|
|
public long ServerId { get; set; }
|
2018-02-09 02:21:25 -05:00
|
|
|
|
[ForeignKey("ServerId")]
|
|
|
|
|
public virtual EFServer Server { get; set; }
|
|
|
|
|
public long TotalKills { get; set; }
|
|
|
|
|
public long TotalPlayTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|