18 lines
424 B
C#
18 lines
424 B
C#
|
|
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.Profiles;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using System;
|
|
using System.Dynamic;
|
|
|
|
namespace AyCode.Interfaces.ServiceProviders;
|
|
|
|
public interface IAcServiceProviderBase : IEntityGuid, ITimeStampInfo, IOwnerId
|
|
{
|
|
string Name { get; set; }
|
|
|
|
double? CommissionPercent { get; set; }
|
|
|
|
Guid AffiliateId { get; set; }
|
|
Guid? ReferralId { get; set; }
|
|
} |