-
-
Notifications
You must be signed in to change notification settings - Fork 823
Closed
Labels
Description
Hi @kzu ,
First of all, thank you for your work on Moq.
We've noticed in release v4.20.71, you've added an attribute Sponsorable. This raised a few questions at our company:
- Could you please explain the intend of this as it appears it is not used anywhere for now?
- How will you determine or will determine if a user is a sponsor?
[assembly: Sponsorable(60)]
namespace Moq
{
class SponsorableAttribute : Attribute
{
public SponsorableAttribute() { }
public SponsorableAttribute(int days) { }
}
}
Thanks for your answers.