Replace api with controller instead of minimalapi

This commit is contained in:
2026-04-01 11:11:19 +10:30
parent f26ff6e04a
commit 5407c7db55
17 changed files with 98 additions and 147 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Emergence.models
{
public class TenantModel
{
public Guid Id = new Guid();
public string TenantCode = string.Empty;
public string CompanyName = string.Empty;
public bool IsInactive = false;
}
}