57 lines
1.6 KiB
C#
57 lines
1.6 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace AyaNovaQBI
|
|
{
|
|
public class Vendor
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
public bool Active { get; set; }
|
|
public string Notes { get; set; }
|
|
public string Wiki { get; set; }
|
|
public string CustomFields { get; set; }
|
|
public List<string> Tags { get; set; }
|
|
|
|
public string Contact { get; set; }
|
|
public string ContactNotes { get; set; }
|
|
public string AlertNotes { get; set; }
|
|
public string WebAddress { get; set; }
|
|
public string AccountNumber { get; set; }
|
|
public string Phone1 { get; set; }
|
|
public string Phone2 { get; set; }
|
|
public string Phone3 { get; set; }
|
|
public string Phone4 { get; set; }
|
|
public string Phone5 { get; set; }
|
|
public string EmailAddress { get; set; }
|
|
|
|
|
|
//POSTAL ADDRESS
|
|
public string PostAddress { get; set; }
|
|
public string PostCity { get; set; }
|
|
public string PostRegion { get; set; }
|
|
public string PostCountry { get; set; }
|
|
public string PostCode { get; set; }
|
|
|
|
//PHYSICAL ADDRESS
|
|
public string Address { get; set; }
|
|
public string City { get; set; }
|
|
public string Region { get; set; }
|
|
public string Country { get; set; }
|
|
public decimal? Latitude { get; set; }
|
|
public decimal? Longitude { get; set; }
|
|
|
|
|
|
|
|
public Vendor()
|
|
{
|
|
Tags = new List<string>();
|
|
}
|
|
|
|
|
|
|
|
}//eoc
|
|
}
|