using AyCode.Interfaces.Entities;
using AyCode.Interfaces.Profiles;
namespace AyCode.Interfaces.Users.Dtos;
public interface IAcUserDtoMinBase<TProfile> : IEntityGuid, IAcProfileRelation<TProfile> where TProfile : class, IAcProfile
{
}