using zero.Core.Attributes; namespace zero.Core.Entities { /// public class MediaFolder : ZeroEntity, IMediaFolder { /// public string AppId { get; set; } /// public string ParentId { get; set; } } /// /// A media folder contains media and other folders /// [Collection("MediaFolders", LongId = true)] public interface IMediaFolder : IZeroEntity, IZeroDbConventions, IAppAwareEntity { /// /// Parent folder id /// string ParentId { get; set; } } }