using AyCode.Interfaces.Profiles.Dtos; namespace AyCode.Interfaces.Profiles; public interface IAcProfileRelation : IAcProfileForeignKey where TProfile : class, IAcProfileDtoBase { public TProfile Profile { get; set; } }