forked from jo3bingham/TibiaAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOffer.cs
More file actions
34 lines (28 loc) · 1.2 KB
/
Offer.cs
File metadata and controls
34 lines (28 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System.Collections.Generic;
namespace OXGaming.TibiaAPI.Store
{
public class Offer
{
public List<OfferDetails> Details { get; } = new List<OfferDetails>();
public List<Offer> Products { get; } = new List<Offer>();
public string Collection { get; set; }
public string DisplayImage { get; set; }
public string Name { get; set; }
public uint NewUntilTimestamp { get; set; }
public ushort DisplayItemId { get; set; }
public ushort DisplayFemaleLooktype { get; set; }
public ushort DisplayLooktype { get; set; }
public ushort DisplayMaleLooktype { get; set; }
public ushort DisplayMountId { get; set; }
public ushort PopularityScore { get; set; }
public byte DisplayColorDetail { get; set; }
public byte DisplayColorHead { get; set; }
public byte DisplayColorLegs { get; set; }
public byte DisplayColorTorso { get; set; }
public byte DisplayType { get; set; }
public byte GenderToShow { get; set; }
public byte TryType { get; set; }
public bool NeedsUserConfigurationBeforeBuying { get; set; }
public bool IsFeatured { get; set; }
}
}