16 lines
568 B
C#
16 lines
568 B
C#
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
public class CustomComponent : FullAuditedEntity<Guid>, IMultiTenant
|
|
{
|
|
public virtual Guid? TenantId { get; protected set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Code { get; set; } = string.Empty;
|
|
public string? Props { get; set; }
|
|
public string? Description { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
public string? Dependencies { get; set; } // JSON string of component names
|
|
}
|