Files
Complex/Complex.Domain/Entities/TransactionTitle.cs
2026-06-02 20:48:16 +03:30

19 lines
606 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}