TourIAm/TIAM.Entities/Users/IUserProductMappingRelation.cs

9 lines
271 B
C#

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