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 Children { get; set; } = null; } }