19 lines
442 B
C#
19 lines
442 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
||
|
|
using Volo.Abp.MultiTenancy;
|
||
|
|
|
||
|
|
namespace Erp.Platform.Entities;
|
||
|
|
|
||
|
|
public class ProjectStatus : FullAuditedEntity<Guid>, IMultiTenant
|
||
|
|
{
|
||
|
|
public Guid? TenantId { get; set; }
|
||
|
|
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string Description { get; set; }
|
||
|
|
public bool IsActive { get; set; }
|
||
|
|
|
||
|
|
public ICollection<Project> Projects { get; set; }
|
||
|
|
}
|
||
|
|
|