using System.Collections.Generic; using Alkami.Ops.SecretServer.Enum; namespace Alkami.Ops.SecretServer.Messages { /// /// Base class for all messages returned from various requests /// public class MessageBase { /// /// An informational message about the request /// public string Message { get; set; } /// /// The of the request /// public ResultStatus Status { get; set; } /// /// Any errors returned during the request /// public List Errors { get; set; } = new List(); } }