4ee8b9101d
Create working for tenant and added in efcore and data layer
14 lines
291 B
C#
14 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Emergence.models;
|
|
|
|
public class TenantModel
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public string TenantCode { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public bool IsInactive { get; set; }
|
|
}
|