crm.core/code/Crm.Core.Domain/Dto/Live/LiveScheduleDto.cs

14 lines
254 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Domain.Dto.Live
{
public class LiveScheduleDto : TreeDto
{
public int Deptid { get; set; }
}
}