using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos; namespace Nop.Plugin.Misc.AuctionPlugin.Models { //TODO: Miért string minden property? - J. public class AssignAuctionRequestModel //: AuctionDto { //vagy az alábbi - J. //public AuctionDto AuctionDto { get; set; } public string ProductId { get; set; } public string StartingPrice { get; set; } public string BidPrice { get; set; } public string AuctionId { get; set; } public int SortIndex { get; set; } } }