| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace BO.AppServer.Data.Entity
- {
- public partial class InvoiceIssuer
- {
- public InvoiceIssuer()
- {
- Invoices = new HashSet<Invoice>();
- }
- public long Id { get; set; }
- public string SubjectName { get; set; }
- public string Address1 { get; set; }
- public string Address2 { get; set; }
- public string City { get; set; }
- public string Zip { get; set; }
- public string Country { get; set; }
- public string TaxNumber { get; set; }
- public string Vatnumber { get; set; }
- public string Phone { get; set; }
- public string Email { get; set; }
- public DateTime Created { get; set; }
- public DateTime? Modified { get; set; }
- public long CreatedByUserId { get; set; }
- public long? ModifiedByUserId { get; set; }
- public bool IsEnabled { get; set; }
- public virtual User CreatedByUser { get; set; }
- public virtual User ModifiedByUser { get; set; }
- public virtual ICollection<Invoice> Invoices { get; set; }
- }
- }
|