AyCode.Core/AyCode.Interfaces/Profiles/IAcProfileRelation.cs

8 lines
231 B
C#

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