718087309c
moved buildscripts to application added publish profile
18 lines
473 B
C#
18 lines
473 B
C#
using SharedLibraryCore.Database.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.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; }
|
|
}
|
|
}
|