-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathManifest.cs
32 lines (29 loc) · 839 Bytes
/
Manifest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using LefeWareLearning.StripePayment;
using OrchardCore.Modules.Manifest;
[assembly: Module(
Name = "StripePayment",
Author = "LefeWare Solutions",
Website = "https://LefeWareSolutions.com",
Version = "1.0.0",
Category = "Payment"
)]
[assembly: Feature(
Id = StripePaymentConstants.Features.StripePayment,
Name = "Stripe Payment",
Category = "Payment",
Description = "Allows users to use stripe as their payment method",
Dependencies = new[]
{
"OrchardCore.PaymentForm",
}
)]
[assembly: Feature(
Id = StripePaymentConstants.Features.StripeSubscription,
Name = "Stripe Subscriptions",
Category = "Payment",
Description = "Allows users to use stripe for reocurring payment subscriptions",
Dependencies = new[]
{
"OrchardCore.TenantBilling",
}
)]