|
namespace TIAM.Entities.Users;
|
|
|
|
public interface IUserProductMappingRelation<T> : IUserProductMappingForeignKey<T>
|
|
{
|
|
public UserProductMapping UserProductMapping { get; set; }
|
|
}
|
|
|
|
public interface IUserProductMappingsRelation : IUserProductMappingRelation<Guid>
|
|
{ } |