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