IIdentifier.cs 156 B

1234567
  1. namespace Quadarax.Application.QLiberace.Common.Entities.Base
  2. {
  3. public interface IIdentifier : IEntity
  4. {
  5. public long Id { get; }
  6. }
  7. }