QlbrcDtoWithId.cs 270 B

12345678910
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. using Quadarax.Foundation.Core.Data.Interface.Entity;
  3. namespace Quadarax.Application.QLiberace.Common.Dtos
  4. {
  5. public class QlbrcDtoWithId : IDto, IIdentifier
  6. {
  7. public long Id { get; }
  8. }
  9. }