using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.KitChen.GroupMealOrder.Application.Service.AExternalPlatform.BaseDto { public class ResponDataBase { public string statusCode { get; set; } public object data { get; set; } public string succeeded { get; set; } public string errors { get; set; } } }