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