mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
Moved from database first to code first. Upgraded to EFCore 3.1. Upgraded to .NET Core 3.1.
15 lines
423 B
C#
15 lines
423 B
C#
namespace NexusForever.Database.World.Model
|
|
{
|
|
public class EntitySplineModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public ushort SplineId { get; set; }
|
|
public byte Mode { get; set; }
|
|
public float Speed { get; set; }
|
|
public float Fx { get; set; }
|
|
public float Fy { get; set; }
|
|
public float Fz { get; set; }
|
|
|
|
public EntityModel Entity { get; set; }
|
|
}
|
|
}
|