using System; using System.Collections.Generic; using System.Text; namespace APT.Infrastructure.Core { public class EFApiActionResult { public EFApiActionResult() { this.Messages = new List(); } public bool IsError { get; set; } public T Data { get; set; } public List Messages { get; set; } } }