forked from ddrilling/AsbCloudServer
11 lines
298 B
C#
11 lines
298 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model.Trajectory
|
|
{
|
|
[Table("t_fact_trajectory"), Comment("Загрузка фактической траектории")]
|
|
public class FactTrajectory : Trajectory
|
|
{
|
|
}
|
|
}
|