ComplianceServer/code/Hg.Complaint.Domain/Dto/DeptmentGroupDto.cs

15 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Complaint.Domain.Dto
{
public class DeptmentGroupDto : DeptmentGroup
{
public virtual List<Deptment>? Deptments { get; set; }
}
}