You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
273 B

using Infrastructure.Domain;
using System.Collections.Generic;
namespace Application.Domain.Entities
{
public class Department : BaseTreeEntity<Department>
{
public List<UserDepartment> UserDepartments { get; set; } = new List<UserDepartment>();
}
}