13 lines
310 B
C#
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>
|
|
{ } |