perf pro api

This commit is contained in:
Paul Schneider 2017-02-21 20:49:07 +01:00
commit f16841f8d7
6 changed files with 52 additions and 13 deletions

View file

@ -0,0 +1,17 @@
namespace YavscLib.Workflow
{
public interface IPerformerProfile
{
string PerformerId { get; set; }
string SIREN { get; set; }
bool AcceptNotifications { get; set; }
long OrganizationAddressId { get; set; }
bool AcceptPublicContact { get; set; }
bool UseGeoLocalizationToReduceDistanceWithClients { get; set; }
string WebSite { get; set; }
bool Active { get; set; }
int? MaxDailyCost { get; set; }
int? MinDailyCost { get; set; }
int Rate { get; set; }
}
}