forked from ddrilling/AsbCloudServer
551c60c4ff
Rename some fields in DB.permission.
17 lines
474 B
C#
17 lines
474 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserRoleDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Caption { get; set; }
|
|
public int? IdParent { get; set; }
|
|
public int IdType { get; set; }
|
|
public IEnumerable<PermissionBaseDto> Permissions { get; set; }
|
|
[JsonIgnore]
|
|
public virtual ICollection<UserDto> Users { get; set; }
|
|
}
|
|
}
|