Wonky.Client/Wonky.Entity/Models/VirkRegInfo.cs
Frede Hundewadt 532cd08827 WIP
2023-05-21 08:23:47 +02:00

67 lines
No EOL
2 KiB
C#

// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
//
using System.Collections.Generic;
namespace Wonky.Entity.Models;
public class VirkRegInfo
{
/// <summary>
/// VAT number
/// </summary>
public string VatNumber { get; set; } = "";
/// <summary>
/// Entity registration name
/// </summary>
public string Name { get; set; } = "";
/// <summary>
/// Entity address C/O name
/// </summary>
public string CoName { get; set; } = "";
/// <summary>
/// Entity address line
/// </summary>
public string Address { get; set; } = "";
/// <summary>
/// Entity address city name
/// </summary>
public string City { get; set; } = "";
/// <summary>
/// Entity address postal code
/// </summary>
public string ZipCode { get; set; } = "";
/// <summary>
/// List of VAT entity states
/// </summary>
public List<VatRegState> States { get; set; } = new ();
/// <summary>
/// List of VAT entity lifecycles
/// </summary>
public List<VatLifeCycle> LifeCycles { get; set; } = new ();
/// <summary>
/// Date for last request of entity VAT state
/// </summary>
public string RequestDate { get; set; } = "" ;
public bool SyncAll { get; set; }
}