L2Bot2.0/Client/Domain/Entities/Entity.cs
2023-11-11 14:33:22 +04:00

14 lines
248 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Domain.Entities
{
public class Entity : EntityInterface
{
public uint Id { get; set; }
}
}