using Complex.Domain.Commons;
namespace Complex.Domain.Entities
{
///
///عنوان درآمد و هزینه ها
///
[Auditable]
public class IncomeCostTitle :BaseEntity
{
public string? Title { set; get; }
public int TransactionTypeId { set; get; }
public TransactionType TransactionType { set; get; }
//public bool IsPublic { set; get; } = false;
public Guid? ComplexId { set; get; }
public virtual ComplexEntity? Complex { set; get; }
public string? RegisterMobileNumber { set; get; }
}
}