b9900707b5
fixed player specification for commands with multiple words
18 lines
514 B
C#
18 lines
514 B
C#
using SharedLibrary.Database.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace StatsPlugin.Models
|
|
{
|
|
public class EFServerStatistics : SharedEntity
|
|
{
|
|
[Key]
|
|
public int StatisticId { get; set; }
|
|
public int ServerId { get; set; }
|
|
[ForeignKey("ServerId")]
|
|
public virtual EFServer Server { get; set; }
|
|
public long TotalKills { get; set; }
|
|
public long TotalPlayTime { get; set; }
|
|
}
|
|
}
|