18 lines
467 B
C#
18 lines
467 B
C#
using Nop.Plugin.Misc.AuctionPlugin.Domains.Entities;
|
|
using Nop.Web.Framework.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Areas.Admin.Models
|
|
{
|
|
public record TestPageViewModel : BaseNopModel
|
|
{
|
|
public string Title { get; set; }
|
|
public string Message { get; set; }
|
|
public Auction TestAuction { get; set; }
|
|
}
|
|
}
|