AyCode.Core/AyCode.Interfaces/ICustomForeignKey.cs

14 lines
287 B
C#

using AyCode.Core.Interfaces;
namespace AyCode.Interfaces;
public interface ICustomForeignKeyInt : ICustomForeignKey<int>
{ }
public interface ICustomForeignKeyGuid : ICustomForeignKey<Guid>
{ }
public interface ICustomForeignKey<out T> : IForeignKey
{
T ForeignKey { get; }
}