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

8 lines
238 B
C#

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