/
renix
/
TravelGuide
Обзор
Документация
Войти
/
renix
/
TravelGuide
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
back/DTOs/PathDTOs/GetPathDTO.cs
11 строк
322 B
atikinvobud
Alghorithm
09 апр 2025, 23:04
09 апр 2025, 23:04
74b8200
Код
Авторство
О чём код?
namespace back.DTOs.PathDTO; public record GetPathDTO { public int id { get; set; } public int userId { get; set; } public int cityId { get; set; } public int movementTypeId { get; set; } public int expenses { get; set; } public int timeMinutes { get; set; } public bool? mark { get; set; } }