crm.core/code/Crm.Core.External.Domain/Dto/DeptInfoDto.cs

22 lines
433 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 DeptInfoDto
{
public string? Eid { get; set; }
public decimal Deptid { get; set; }
public string? DeptName { get; set; }
public string? CompanyCode { get; set; }
public string? AppId { get; set; }
}
}