using AyCode.Core.Interfaces; namespace AyCode.Interfaces; public interface ICustomForeignKeyInt : ICustomForeignKey { } public interface ICustomForeignKeyGuid : ICustomForeignKey { } public interface ICustomForeignKey : IForeignKey { T ForeignKey { get; } }