Webiant Logo Webiant Logo
  1. No results found.

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

OfficialFeedPluginModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Areas.Admin.Models.Plugins.Marketplace;

/// 
/// Represents an official feed plugin model
/// 
public partial record OfficialFeedPluginModel : BaseNopModel
{
    #region Properties

    public string Url { get; set; }

    public string Name { get; set; }

    public string CategoryName { get; set; }

    public string SupportedVersions { get; set; }

    public string PictureUrl { get; set; }

    public string Price { get; set; }

    #endregion
}