AyCode.Core/AyCode.Core/Interfaces/IForeignKey.cs

14 lines
228 B
C#

using System.Collections;
namespace AyCode.Core.Interfaces;
public interface IForeignKey
{
}
public interface IForeignCollection<T> : IForeignCollection where T : IEnumerable
{}
public interface IForeignCollection
{}