Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Media;
///
/// Represents a picture binary data
///
public partial class PictureBinary : BaseEntity
{
///
/// Gets or sets the picture binary
///
public byte[] BinaryData { get; set; }
///
/// Gets or sets the picture identifier
///
public int PictureId { get; set; }
}