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