using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Models { public class ApiResponse { public bool success { get; set; } public int code { get; set; } public string message { get; set; } } }