diff --git a/EventsModel/Common/Examination.cs b/EventsModel/Common/Examination.cs
index 606753a..0204cd9 100644
--- a/EventsModel/Common/Examination.cs
+++ b/EventsModel/Common/Examination.cs
@@ -32,4 +32,19 @@ public class Examination
///
public string EventType { get; set; }
+ ///
+ /// Gets or sets the result of the examination.
+ ///
+ public string Result { get; set; }
+
+ ///
+ /// Flag of the of the examination.
+ ///
+ public byte? Flag { get; set; } = default;
+
+ ///
+ /// Gets or sets the identifier for the test.
+ ///
+ public int? TestId { get; set; } = default;
+
}
diff --git a/EventsModel/SampleTracking/SampleShipment.cs b/EventsModel/SampleTracking/SampleShipment.cs
index f1c0b63..32da05c 100644
--- a/EventsModel/SampleTracking/SampleShipment.cs
+++ b/EventsModel/SampleTracking/SampleShipment.cs
@@ -51,4 +51,34 @@ public class SampleShipment : BaseMessage
///
public IEnumerable Samples { get; set; }
+ ///
+ /// Identifier of the courier responsible for the shipment
+ ///
+ public int? CourierId { get; set; }
+
+ ///
+ /// Identifier of the carrier responsible for the shipment
+ ///
+ public int? CarrierId { get; set; }
+
+ ///
+ /// Employee of the carrier responsible for the shipment
+ ///
+ public string CarrierEmployee { get; set; }
+
+ ///
+ /// Reference to the document that initiated the shipment.
+ ///
+ public string DocumentRef { get; set; }
+
+ ///
+ /// Indicates whether the shipment is a draft
+ ///
+ public bool IsDraft { get; set; } = true;
+
+ ///
+ /// Indicates whether the shipment is completed
+ ///
+ public bool IsCompleted { get; set; } = false;
+
}
diff --git a/EventsModel/Visits/Sale.cs b/EventsModel/Visits/Sale.cs
index 42eff79..8aba8c7 100644
--- a/EventsModel/Visits/Sale.cs
+++ b/EventsModel/Visits/Sale.cs
@@ -1,4 +1,5 @@
using Skyware.Lis.EventsModel.Common;
+using System;
using System.Collections.Generic;
namespace Skyware.Lis.EventsModel.Visits;
@@ -17,6 +18,11 @@ public class Sale : BaseMessage
///
public int SaleId { get; set; }
+ ///
+ /// Gets or sets the date created of the sale.
+ ///
+ public DateTime Created { get; set; } = DateTime.Now;
+
///
/// Type of the event.
///