c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
21 lines
495 B
C#
21 lines
495 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Data.Abstractions;
|
|
using Stats.Models;
|
|
|
|
namespace Data.Models.Client.Stats.Reference
|
|
{
|
|
public class EFHitLocation : AuditFields, IUniqueId
|
|
{
|
|
[Key]
|
|
public int HitLocationId { get; set; }
|
|
|
|
[Required]
|
|
public string Name { get; set; }
|
|
|
|
[Required]
|
|
public Models.Reference.Game Game { get; set; }
|
|
|
|
public long Id => HitLocationId;
|
|
public string Value => Name;
|
|
}
|
|
} |