IW4M-Admin/Plugins/Stats/Models/EFACSnapshotVector3.cs
RaidMax b086190ab0 renable weapon name in anticheat snapshot list
update migrations for unique index
fix missing total connection time
include total connection time in get client query
2019-11-25 12:05:12 -06:00

24 lines
605 B
C#

using SharedLibraryCore.Database.Models;
using SharedLibraryCore.Helpers;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IW4MAdmin.Plugins.Stats.Models
{
public class EFACSnapshotVector3 : SharedEntity
{
[Key]
public int ACSnapshotVector3Id { get; set; }
public int SnapshotId { get; set; }
[ForeignKey("SnapshotId")]
public EFACSnapshot Snapshot { get; set; }
public int Vector3Id { get; set; }
[ForeignKey("Vector3Id")]
public Vector3 Vector { get; set;}
}
}