Finally got the api working properly

This commit is contained in:
2026-04-01 13:10:01 +10:30
parent 5407c7db55
commit ad107753b5
6 changed files with 24 additions and 19 deletions
+7 -8
View File
@@ -2,13 +2,12 @@
using System.Collections.Generic;
using System.Text;
namespace Emergence.models
namespace Emergence.models;
public class TenantModel
{
public class TenantModel
{
public Guid Id = new Guid();
public string TenantCode = string.Empty;
public string CompanyName = string.Empty;
public bool IsInactive = false;
}
public Guid Id { get; set; }
public string TenantCode { get; set; }
public string CompanyName { get; set; }
public bool IsInactive { get; set; }
}