1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.SmallFun
- {
-
-
-
- public class DistanceAndTimeView
- {
-
-
-
- public string? DurationText { get; set; }
-
-
-
- public int? DurationValue { get; set; }
-
-
-
- public string? DistanceText { get; set; }
-
-
-
- public int? DistanceValue { get; set; }
- }
- }
|