/
renix
/
TravelGuide
Обзор
Документация
Войти
/
renix
/
TravelGuide
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
back/Models/Entities/PathEntity.cs
21 строка
668 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 class PathEntity { public int Id {get; set;} public required int UserId {get; set;} public required int CityId {get; set;} public required int MovementTypeId {get; set;} public required int Expenses {get; set;} public required int TimeMinutes {get;set;} public required bool? Mark {get; set;} public List<StepEntity> Steps {get; set;} = new List<StepEntity>(); public UserEntity? User {get; set;} public CityEntity? City {get; set;} public MovementTypeEntity? MovementType {get; set;} }