forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemContract.cs
More file actions
36 lines (24 loc) · 844 Bytes
/
Copy pathItemContract.cs
File metadata and controls
36 lines (24 loc) · 844 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
34
35
36
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using L2dotNET.DataContracts.Shared.Enums;
namespace L2dotNET.DataContracts
{
[Table("Items")]
public class ItemContract
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int ItemId { get; set; }
public int CharacterId { get; set; }
public int ObjectId { get; set; }
public int Count { get; set; }
public int Enchant { get; set; }
public ItemLocation 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; }
}
}