12 lines
369 B
C#
12 lines
369 B
C#
using adas_core.Domain.Models.MongoModels;
|
|
|
|
namespace adas_core.Domain.Models.DTO;
|
|
|
|
/// <summary>
|
|
/// Represents a data transfer object used to update an existing observation.
|
|
/// </summary>
|
|
public class UpdateObservationDto
|
|
{
|
|
public ConfigObservation? OldConfigObservationItem { get; set; }
|
|
public ConfigObservation? NewConfigObservationItem { get; set; }
|
|
} |