01.
public
class
Class
02.
{
03.
public
List<SubClass> Articles {
get
;
set
; }
04.
05.
06.
07.
public
string
CategoryId {
get
;
set
; }
08.
09.
[XmlAttribute(
"title"
)]
10.
public
string
Titles {
get
;
set
; }
11.
12.
[XmlAttribute(
"image"
)]
13.
public
string
Images {
get
;
set
; }
14.
15.
public
string
name {
get
;
set
; }
16.
17.
public
string
Subimage {
get
;
set
; }
18.
19.
public
string
SubcategoryId {
get
;
set
; }
20.
21.
public
string
ProductName {
get
;
set
; }
22.
23.
public
string
ProductCount {
get
;
set
; }
24.
}
25.
26.
public
class
SubClass
27.
{
28.
public
string
name {
get
;
set
; }
29.
30.
public
string
Subimage {
get
;
set
; }
31.
32.
public
string
SubcategoryId {
get
;
set
; }
33.
34.
public
string
ProductName {
get
;
set
; }
35.
36.
public
string
Producttype {
get
;
set
; }
37.
38.
public
string
ProductCount {
get
;
set
; }
39.
40.
public
string
Retailerslist {
get
;
set
; }
41.
42.
public
List<Product> Product {
get
;
set
; }
43.
44.
}
45.
46.
public
class
Product
47.
{
48.
public
List<Retailers> Producttype {
get
;
set
; }
49.
50.
public
string
ProductName {
get
;
set
; }
51.
52.
public
string
ProductImage {
get
;
set
; }
53.
54.
public
string
Shortdescription {
get
;
set
; }
55.
56.
public
string
Price {
get
;
set
; }
57.
58.
public
string
ProductId {
get
;
set
; }
59.
}
60.
61.
public
class
Retailers
62.
{
63.
public
string
retailer {
get
;
set
; }
64.
}