2019-11-25 13:05:12 -05:00
|
|
|
|
using SharedLibraryCore.Database.Models;
|
2019-09-09 18:40:04 -04:00
|
|
|
|
using SharedLibraryCore.Helpers;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Models
|
|
|
|
|
{
|
2019-11-25 13:05:12 -05:00
|
|
|
|
public class EFACSnapshotVector3 : SharedEntity
|
2019-09-09 18:40:04 -04:00
|
|
|
|
{
|
|
|
|
|
[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;}
|
|
|
|
|
}
|
|
|
|
|
}
|