// *********************************************************************** // Assembly : Inno.Api // Author : FH // Created : 01-01-2022 // // Last Modified By : FH // Last Modified On : 01-31-2022 // *********************************************************************** // // Copyright © FCS 2015-2022 // // // *********************************************************************** namespace FCS.Virk.CvrModels { /// /// Class CvrCompany. /// public class CvrCompany { /// /// Gets or sets the vat number. /// /// The vat number. public string VatNumber { get; set; } = ""; /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } = ""; /// /// Gets or sets the name of the co. /// /// The name of the co. public string CoName { get; set; } = ""; /// /// Gets or sets the address. /// /// The address. public string Address { get; set; } = ""; /// /// Gets or sets the city. /// /// The city. public string City { get; set; } = ""; /// /// Gets or sets the zip code. /// /// The zip code. public string ZipCode { get; set; } = ""; /// /// Gets or sets the status. /// /// The status. public List Status { get; set; } = new(); } }