Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Media;
///
/// Represents a picture
///
public partial class Picture : BaseEntity
{
///
/// Gets or sets the picture mime type
///
public string MimeType { get; set; }
///
/// Gets or sets the SEO friendly filename of the picture
///
public string SeoFilename { get; set; }
///
/// Gets or sets the "alt" attribute for "img" HTML element. If empty, then a default rule will be used (e.g. product name)
///
public string AltAttribute { get; set; }
///
/// Gets or sets the "title" attribute for "img" HTML element. If empty, then a default rule will be used (e.g. product name)
///
public string TitleAttribute { get; set; }
///
/// Gets or sets a value indicating whether the picture is new
///
public bool IsNew { get; set; }
///
/// Gets or sets the picture virtual path
///
public string VirtualPath { get; set; }
}