IEntity.cs 236 B

12345678910
  1. namespace Abp.Domain.Entities
  2. {
  3. /// <summary>
  4. /// A shortcut of <see cref="IEntity{TPrimaryKey}"/> for most used primary key type (<see cref="int"/>).
  5. /// </summary>
  6. public interface IEntity : IEntity<int>
  7. {
  8. }
  9. }