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.

17 lines
453 B

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<Job> Jobs { get; set; } = new List<Job>();
}
}