7 lines
118 B
C#
7 lines
118 B
C#
namespace Events.WebAPI.Contract.DTOs;
|
|
|
|
public interface IHasIdAsPK<T> where T : IEquatable<T>
|
|
{
|
|
T Id { get; }
|
|
}
|