IW4M-Admin/Plugins/Stats/Models/EFACSnapshotVector3.cs
RaidMax c18be20899 add snap metric to anticheat
update various small code bits
2019-09-09 17:40:04 -05:00

27 lines
654 B
C#

using IW4MAdmin.Plugins.Stats.Models;
using SharedLibraryCore.Helpers;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace IW4MAdmin.Plugins.Stats.Models
{
public class EFACSnapshotVector3
{
[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;}
}
}