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