forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemModel.cs
More file actions
33 lines (20 loc) · 682 Bytes
/
Copy pathItemModel.cs
File metadata and controls
33 lines (20 loc) · 682 Bytes
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
namespace L2dotNET.Models
{
public class ItemModel
{
public int OwnerId { get; set; }
public int ObjectId { get; set; }
public int ItemId { get; set; }
public int Count { get; set; }
public int Enchant { get; set; }
public string Location { get; set; }
public int LocationData { get; set; }
public int? TimeOfUse { get; set; }
public int CustomType1 { get; set; }
public int CustomType2 { get; set; }
public int ManaLeft { get; set; }
public int Time { get; set; }
public bool ExistsInDb { get; set; }
public bool StoredInDb { get; set; }
}
}