using Infrastructure.Domain; using System; using System.Collections.Generic; namespace IoT.Shared.Application.Domain.Entities { public class Title : BaseEntity { public string Name { get; set; } public int MinLevel { get; set; } public int MaxLevel { get; set; } public Guid OrganId { get; set; } public Organ Organ { get; set; } public List Jobs { get; set; } = new List(); } }