14 lines
364 B
C#
14 lines
364 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Core.Serializers.Toons;
|
|
using Nop.Core;
|
|
|
|
namespace Mango.Nop.Core.Entities;
|
|
|
|
[ToonDescription("Base entity class with Id property and ToString override")]
|
|
public abstract class MgEntityBase : BaseEntity, IEntityInt
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"{GetType().Name}; Id: {Id}";
|
|
}
|
|
} |