forked from ddrilling/AsbCloudServer
14 lines
358 B
C#
14 lines
358 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model.Trajectory
|
|
{
|
|
[Table("t_planned_trajectory"), Comment("Загрузка плановой траектории")]
|
|
public class PlannedTrajectory : Trajectory
|
|
{
|
|
|
|
}
|
|
}
|