2018-03-06 02:22:19 -05:00
|
|
|
|
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; }
|
2018-03-27 20:27:01 -04:00
|
|
|
|
[Required]
|
|
|
|
|
public float HitOffsetAverage { get; set; }
|
2018-03-06 02:22:19 -05:00
|
|
|
|
}
|
|
|
|
|
}
|