AyCode.Core/AyCode.Interfaces/Users/Dtos/IAcUserDtoMinBase.cs

10 lines
283 B
C#

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