From 50de9a0a1d8110604cd28f24ff8f8cae76ef0912 Mon Sep 17 00:00:00 2001 From: juliokele <> Date: Sat, 2 Aug 2025 11:42:40 +0200 Subject: [PATCH] licenseGen: fix OrganizationLicense namespace --- src/licenseGen/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/licenseGen/Program.cs b/src/licenseGen/Program.cs index c8b9ea0..e66b61d 100644 --- a/src/licenseGen/Program.cs +++ b/src/licenseGen/Program.cs @@ -393,7 +393,7 @@ internal class Program { Assembly core = AssemblyLoadContext.Default.LoadFromAssemblyPath(corePath); - Type type = core.GetType("Bit.Core.Billing.Models.Business.OrganizationLicense"); + Type type = core.GetType("Bit.Core.Billing.Organizations.Models.OrganizationLicense"); Type licenseTypeEnum = core.GetType("Bit.Core.Enums.LicenseType"); Type planTypeEnum = core.GetType("Bit.Core.Billing.Enums.PlanType");