18 lines
443 B
C#
18 lines
443 B
C#
using Core.Abstractions;
|
|
using Core.Abstractions.DomainObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.DomainObjects {
|
|
internal class ShopItem : PostItem {
|
|
public string Sku { get; set; }
|
|
public int Rating { get; set; }
|
|
public int Price { get; set; }
|
|
public int NewPrice { get; set; }
|
|
public int Quantity { get; set; }
|
|
}
|
|
}
|