From 29add2412656c8e656934e02baf54d955dfcee54 Mon Sep 17 00:00:00 2001 From: juliokele <8851893+juliokele@users.noreply.github.com> Date: Sun, 3 Aug 2025 18:11:30 +0200 Subject: [PATCH] licenseGen: fix OrganizationLicense namespace (#253) Co-authored-by: juliokele <> --- 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");