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