Will you be adding per seat subscription pricing? It seems like it has been on the roadmap for quite some time: https://github.com/aspnetzero/aspnet-zero-core/issues/731 If you will not be adding it anytime soon can you please provide guidance on how to build this out?
How can I change the billing frequency in asp.net zero for editions? For example I want a plan that charges $100 weekly and a plan that charges $300 monthly.
when will subscription coupons be added as it has been on the roadmap for some time?
1 Answer(s)
-
0
Hi @nexgenvisibility
For the next version v10.0, we are focusing on .NET 9 upgrade. So, these features will not be added for the short term. Here are my answer to your questions;
- Since we haven't analyzed how to implement this, unfortunately we can't provide a guide for you. To implemnet this, edition price must be calculated dynamically based on number of users of registered tenant.
- We currently provide Monthly and Yearly periods. You need to first add Weekly to
PaymentPeriodType
enum. Then, you need to search for example usages ofPaymentPeriodType.Annual
and implement weekly accordingly. - Not for v10. at least.
Since we get many requests for these features/enhancements, I will add these items to v10.1 for evaluation.