17 lines
395 B
C#
17 lines
395 B
C#
namespace Nop.Core.Domain.Media;
|
|
|
|
/// <summary>
|
|
/// Represents a picture binary data
|
|
/// </summary>
|
|
public partial class PictureBinary : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the picture binary
|
|
/// </summary>
|
|
public byte[] BinaryData { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the picture identifier
|
|
/// </summary>
|
|
public int PictureId { get; set; }
|
|
} |