233aeeb12f
fixed bug of duplicate penalties fixed showing timeline date for non events refresh player count on server overview fix refresh privileged users on map load fix 1h showing on tempban if manually specified
18 lines
457 B
C#
18 lines
457 B
C#
using SharedLibrary.Database.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace StatsPlugin.Models
|
|
{
|
|
public class EFHitLocationCount : SharedEntity
|
|
{
|
|
[Key]
|
|
public int HitLocationCountId { get; set; }
|
|
[Required]
|
|
public IW4Info.HitLocation Location { get; set; }
|
|
[Required]
|
|
public int HitCount { get; set; }
|
|
[Required]
|
|
public float HitOffsetAverage { get; set; }
|
|
}
|
|
}
|