using System; using System.Collections.Generic; using System.Text; namespace CommonUsage.Protocols.VDA5050.Messages { public class errorMessage { public string serialNumber = ""; public string errorCode = ""; // Unique error code public string description = ""; // Error description public string severity = ""; // Enum {'WARNING', 'FATAL'} public DateTime timestamp; // Time of the error } }