mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
18 lines
531 B
C#
18 lines
531 B
C#
using SharedLibraryCore.Database.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Models
|
|
{
|
|
public class EFServerStatistics : SharedEntity
|
|
{
|
|
[Key]
|
|
public int StatisticId { get; set; }
|
|
public long ServerId { get; set; }
|
|
[ForeignKey("ServerId")]
|
|
public virtual EFServer Server { get; set; }
|
|
public long TotalKills { get; set; }
|
|
public long TotalPlayTime { get; set; }
|
|
}
|
|
}
|