13 lines
336 B
C#
13 lines
336 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a utility or component related to timing operations.
|
|
/// Provides functionality for measuring, tracking, or managing time-related behavior.
|
|
/// </summary>
|
|
public class Timing
|
|
{
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
} |