15 lines
473 B
C#
15 lines
473 B
C#
using Indotalent.Data.Abstracts;
|
|
using Indotalent.Data.Interfaces;
|
|
using Indotalent.Data.Enums;
|
|
|
|
namespace Indotalent.Data.Entities;
|
|
|
|
public class Invoice : BaseEntity, IHasAutoNumber
|
|
{
|
|
public string? AutoNumber { get; set; }
|
|
public DateTime? InvoiceDate { get; set; }
|
|
public InvoiceStatus InvoiceStatus { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? SalesOrderId { get; set; }
|
|
public SalesOrder? SalesOrder { get; set; }
|
|
} |