mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
add snap metric to anticheat
update various small code bits
This commit is contained in:
26
Plugins/Stats/Models/EFACSnapshotVector3.cs
Normal file
26
Plugins/Stats/Models/EFACSnapshotVector3.cs
Normal file
@ -0,0 +1,26 @@
|
||||
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;}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user