using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Shared { public class RetMsg { public bool Result { get; set; } public int Retcode { get; set; } public string? Retmsg { get; set; } } }