18 lines
346 B
C#
18 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.CRM
|
|
{
|
|
public class BusinessDto
|
|
{
|
|
public decimal? Businessid { get; set; }
|
|
|
|
public string? BusinessName { get; set; }
|
|
|
|
public decimal? Channel { get; set; }
|
|
}
|
|
}
|