mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 10:34:22 +00:00
19 lines
517 B
C#
19 lines
517 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class Tenant : IAuditable
|
|
{
|
|
public int TenantId { get; set; }
|
|
public string Name { get; set; }
|
|
public string DBConnectionString { get; set; }
|
|
public string DBSchema { get; set; }
|
|
public bool IsInitialized { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string ModifiedBy { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|