L2Bot2.0/Client/Domain/Entities/ItemInterface.cs
2024-08-15 17:23:24 +02:00

22 lines
541 B
C#

using Client.Domain.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Domain.Entities
{
public interface ItemInterface : EntityInterface
{
uint ItemId { get; set; }
ItemTypeEnum Type { get; set; }
string Name { get; set; }
string IconName { get; set; }
string Description { get; set; }
int Mana { get; set; }
uint Weight { get; set; }
string FullDescription { get; }
}
}