You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
367 B
17 lines
367 B
using WTA.Shared.Attributes;
|
|
using WTA.Shared.Domain;
|
|
|
|
namespace WTA.Application.Identity.Entities.Tenants;
|
|
|
|
[Hidden]
|
|
[Tenants]
|
|
public class ConnectionString : BaseEntity
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string Value { get; set; } = null!;
|
|
|
|
[Navigation]
|
|
public Guid? ParentId { get; set; }
|
|
|
|
public Tenant? Parent { get; set; }
|
|
}
|
|
|