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