mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
24 lines
574 B
C#
24 lines
574 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Numerics;
|
|
using Data.Models.Client.Stats;
|
|
|
|
namespace Data.Models.Client
|
|
{
|
|
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;}
|
|
}
|
|
}
|