Finally got the api working properly
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user