IW4M-Admin/Data/Models/Client/EFACSnapshotVector3.cs
RaidMax c5375b661b huge commit for advanced stats feature.
broke data out into its own library.
may be breaking changes with existing plugins
2021-03-22 11:09:25 -05:00

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;}
}
}