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

13 lines
310 B
C#

using AyCode.Interfaces.Users;
using System.Runtime;
using TIAM.Entities.Products;
namespace TIAM.Entities.Users;
public interface IUserProductMappingForeignKey<T>
{
public T UserProductMappingId { get; set; }
}
public interface IUserProductMappingForeignKey : IUserProductMappingForeignKey<Guid>
{ }