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