using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_External.Model { public class ERPBaseModel { public string Type { get; set; } public string Desc { get; set; } public string SecurityCode { get; set; } public T Data { get; set; } } }