TourIAm/TIAM.Entities/Users/IUserProductMappingForeignK...

9 lines
226 B
C#

namespace TIAM.Entities.Users;
public interface IUserProductMappingForeignKey<T>
{
public T UserProductMappingId { get; set; }
}
public interface IUserProductMappingForeignKey : IUserProductMappingForeignKey<Guid>
{ }