Files
2026-04-11 19:09:55 +09:30

15 lines
340 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 string ConnectionString { get; set; }
public bool IsInactive { get; set; }
}