Skip to content

Commit

Permalink
Fixed API properties in client interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Nesterov committed Apr 9, 2020
1 parent fe2f8d7 commit 8918729
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ namespace MAVN.Service.SmartVouchers.Client
[PublicAPI]
public interface ISmartVouchersClient
{
// Make your app's controller interfaces visible by adding corresponding properties here.
// NO actual methods should be placed here (these go to controller interfaces, for example - ISmartVouchersApi).
// ONLY properties for accessing controller interfaces are allowed.
/// <summary>Voucher campaigns Api interface</summary>
IVoucherCampaignsApi CampaignsApi { get; }

/// <summary>Application Api interface</summary>
IVoucherCampaignsApi Api { get; }
/// <summary>Vouchers Api interface</summary>
ISmartVouchersApi VouchersApi { get; }
}
}

0 comments on commit 8918729

Please sign in to comment.