namespace Core.Blueprint.Domain.Entities { public abstract class AbsFileEntity : AbsEntity { public byte[] FileContent { get; set; } = []; } }