first commit
This commit is contained in:
19
Complex.Domain/Entities/TransactionTitle.cs
Normal file
19
Complex.Domain/Entities/TransactionTitle.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user