crm.core/code/Crm.Core.MsgTool.Domain/Dto/CRM/BusinessDto.cs

17 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.MsgTool.Domain.Dto.CRM
{
public class BusinessDto
{
public decimal? Businessid { get; set; }
public string? BusinessName { get; set; }
public decimal? Channel { get; set; }
}
}