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