forked from ddrilling/AsbCloudServer
13 lines
397 B
C#
13 lines
397 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model.Trajectory
|
|
{
|
|
[Table("t_trajectory_plan"), Comment("Загрузка плановой траектории")]
|
|
public class TrajectoryPlan : Trajectory
|
|
{
|
|
[Column("radius"), Comment("Радиус цели")]
|
|
public double? Radius { get; set; }
|
|
}
|
|
}
|