mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 10:34:22 +00:00
13 lines
265 B
C#
13 lines
265 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class Tenant
|
|
{
|
|
public int TenantId { get; set; }
|
|
public string Name { get; set; }
|
|
public string DBConnectionString { get; set; }
|
|
public string DBSchema { get; set; }
|
|
}
|
|
}
|