/
renix
/
TravelGuide
Обзор
Документация
Войти
/
renix
/
TravelGuide
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
back/Models/Entities/StepEntity.cs
19 строк
584 B
atikinvobud
Alghorithm
09 апр 2025, 23:04
09 апр 2025, 23:04
74b8200
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace back.Models.Entities; public record StepEntity { public int Id { get; set; } public required int PathId {get; set;} public required int LandmarkStartId {get; set;} public required int LandmarkEndId {get; set;} public required TimeSpan TimeOfStart {get;set;} public required TimeSpan TimeOfEnd {get; set;} public PathEntity? Path {get; set;} public LandmarkEntity? LandmarkStart {get; set;} public LandmarkEntity? LandmarkEnd {get; set;} }