Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PictureBinary.cs

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; }
}