15 lines
478 B
C#
15 lines
478 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.SubAccountPermissionSubtitle
|
|
{
|
|
public class SubAccountPermissionSubtitleViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public int Code { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
public SubAccountPermissionSubtitleViewModel Parent { get; set; } = null;
|
|
public List<SubAccountPermissionSubtitleViewModel> Children { get; set; } = null;
|
|
}
|
|
}
|