Files
blazor-saas-crm/Data/Entities/DebitNote.cs
T
2026-07-21 14:14:44 +07:00

16 lines
549 B
C#

using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
using Indotalent.Data.Enums;
namespace Indotalent.Data.Entities;
public class DebitNote : BaseEntity, IHasAutoNumber, IMultiTenant
{
public string? TenantId { get; set; }
public string? AutoNumber { get; set; }
public DateTime? DebitNoteDate { get; set; }
public DebitNoteStatus DebitNoteStatus { get; set; }
public string? Description { get; set; }
public string? PurchaseReturnId { get; set; }
public PurchaseReturn? PurchaseReturn { get; set; }
}