11 lines
310 B
C#
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; }
|
|
} |