AyCode.Core/AyCode.Interfaces/Profiles/IAcProfileForeignKey.cs

8 lines
168 B
C#

using AyCode.Core.Interfaces;
namespace AyCode.Interfaces.Profiles;
public interface IAcProfileForeignKey : IForeignKey
{
public Guid ProfileId { get; set; }
}