using AyCode.Interfaces.Entities; using AyCode.Interfaces.Profiles; using AyCode.Interfaces.Profiles.Dtos; namespace AyCode.Interfaces.Users.Dtos; public interface IAcUserDtoMinBase : IEntityGuid, IAcProfileRelation where TProfile : class, IAcProfileDtoBase { public Guid AffiliateId { get; set; } }