using System; using System.Collections.Generic; using Infrastructure.Domain; namespace Application.Domain.Entities { public class FolderObject : BaseEntity { public string Name { get; set; } public string Path { get; set; } public Guid? ParentId { get; set; } public FolderObject Parent { get; set; } public List Children { get; set; } = new List(); public List Files { get; set; } = new List(); } }