15 lines
319 B
C#
15 lines
319 B
C#
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;
|
|
}
|
|
}
|