11 lines
322 B
C#
11 lines
322 B
C#
|
|
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.Profiles;
|
|
using AyCode.Interfaces.Profiles.Dtos;
|
|
|
|
namespace AyCode.Interfaces.Users.Dtos;
|
|
|
|
public interface IAcUserDtoMinBase<TProfile> : IEntityGuid, IAcProfileRelation<TProfile> where TProfile : IAcProfileDtoBase
|
|
{
|
|
public Guid AffiliateId { get; set; }
|
|
} |