This commit is contained in:
pavelbannov 2022-10-06 11:43:16 +03:00
parent 553eb726b0
commit 89390657cf

View File

@ -60,7 +60,7 @@ public static class DbQuotaExtension
Name = "trial",
Description = null,
Features = "trial,audit,ldap,sso,whitelabel,restore,total_size:10995116277760,file_size:100,manager:1",
Price = decimal.Parse("0.00"),
Price = decimal.Parse("0.00", NumberStyles.AllowDecimalPoint),
ProductId = null,
Visible = false
},
@ -70,7 +70,7 @@ public static class DbQuotaExtension
Name = "admin",
Description = null,
Features = "audit,ldap,sso,whitelabel,restore,total_size:10995116277760,file_size:1024,manager:1",
Price = decimal.Parse("30.00"),
Price = decimal.Parse("30.00", NumberStyles.AllowDecimalPoint),
ProductId = "1002",
Visible = true
},
@ -80,7 +80,7 @@ public static class DbQuotaExtension
Name = "startup",
Description = null,
Features = "free,audit,ldap,sso,restore,total_size:2147483648,file_size:100,manager:1,rooms:12,usersInRoom:3",
Price = decimal.Parse("0.00"),
Price = decimal.Parse("0.00", NumberStyles.AllowDecimalPoint),
ProductId = null,
Visible = false
}