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

11 lines
310 B
C#

using AyCode.Interfaces.TimeStampInfo;
using AyCode.Interfaces.Users.Dtos;
using AyCode.Interfaces.Users;
namespace AyCode.Interfaces.Profiles;
public interface IAcProfileRelation<TProfile> where TProfile : class, IAcProfile
{
public Guid ProfileId { get; }
public TProfile Profile { get; set; }
}