crm.core/code/Crm.Core.Domain/Dto/CRM/SalesDeptDto.cs

25 lines
501 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 SalesDeptDto
{
public SalesDeptDto()
{
GroupIds = new List<decimal>();
}
public decimal? SalesGroupId { get; set; }
public string? Title { get; set; }
public decimal? DepartmentParentId { get; set; }
public List<decimal> GroupIds { get; set; }
}
}