2025-01-06 01:43:49 +08:00

12 lines
264 B
C#

namespace Milimoe.FunGame.Core.Interface.Entity
{
public interface IBaseEntity : IEquatable<IBaseEntity>
{
public long Id { get; }
public Guid Guid { get; }
public string Name { get; }
public string GetIdName();
}
}