This commit is contained in:
Loretta 2025-11-06 15:11:59 +01:00
parent 2bd97c88ca
commit bef91e0131
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
//namespace Nop.Core.Domain.Common; //namespace Nop.Core.Domain.Common;
using AyCode.Interfaces.Entities;
namespace Nop.Core; namespace Nop.Core;
/// <summary> /// <summary>
@ -12,7 +15,7 @@ public abstract partial class BaseEntity : IBaseEntity
public int Id { get; set; } public int Id { get; set; }
} }
public interface IBaseEntity public interface IBaseEntity //: IEntityInt
{ {
public int Id { get; set; } public int Id { get; set; }
} }