using DigitalData.Core.Contracts.Application; namespace DigitalData.Core.Application { /// /// Represents the outcome of a service operation, encapsulating the success or failure status, /// the data returned by the operation, and any associated messages. /// /// The type of data returned by the service operation, if any. public class ServiceResult : ServiceMessage, IServiceResult { /// /// Initializes a new instance of the ServiceResult class with specified success status, data, and messages. /// /// The data associated with a successful operation. /// Indicates whether the service operation was successful. /// An array of messages related to the operation's outcome. public ServiceResult(T? data, bool isSuccess, params string[] messages) : base(isSuccess, messages) => Data = data; /// /// Gets or sets the data resulting from the service operation. /// public T? Data { get; set; } } }