19 lines
606 B
C#
19 lines
606 B
C#
using Complex.Domain.Commons;
|
||
|
||
namespace Complex.Domain.Entities
|
||
{
|
||
/// <summary>
|
||
///عنوان درآمد و هزینه ها
|
||
/// </summary>
|
||
[Auditable]
|
||
public class IncomeCostTitle :BaseEntity<int>
|
||
{
|
||
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; }
|
||
}
|
||
} |