Wonky.Client/Wonky.Entity/Models/VirkRegInfo.cs

66 lines
1.9 KiB
C#
Raw Normal View History

2023-02-07 09:01:03 +01:00
2022-03-11 14:21:04 +01:00
// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
2022-05-31 19:07:39 +02:00
// it under the terms of the GNU Affero General Public License as
2022-03-11 14:21:04 +01:00
// 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
2022-05-31 19:07:39 +02:00
// GNU Affero General Public License for more details.
2022-03-11 14:21:04 +01:00
//
2022-05-31 19:07:39 +02:00
// You should have received a copy of the GNU Affero General Public License
2022-03-11 14:21:04 +01:00
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
//
namespace Wonky.Entity.Models;
2022-03-11 14:21:04 +01:00
public class VirkRegInfo
2022-03-11 14:21:04 +01:00
{
2022-07-01 10:02:29 +02:00
/// <summary>
/// VAT number
/// </summary>
public string VatNumber { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Entity registration name
/// </summary>
public string Name { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Entity address C/O name
/// </summary>
public string CoName { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Entity address line
/// </summary>
public string Address { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Entity address city name
/// </summary>
public string City { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Entity address postal code
/// </summary>
public string ZipCode { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// List of VAT entity states
/// </summary>
2022-04-04 14:32:19 +02:00
public List<VatRegState> States { get; set; } = new ();
2022-07-01 10:02:29 +02:00
/// <summary>
/// List of VAT entity lifecycles
/// </summary>
2022-04-04 14:32:19 +02:00
public List<VatLifeCycle> LifeCycles { get; set; } = new ();
2022-07-01 10:02:29 +02:00
/// <summary>
/// Date for last request of entity VAT state
/// </summary>
2022-04-04 14:32:19 +02:00
public string RequestDate { get; set; } = "" ;
2022-09-14 13:45:55 +02:00
public bool SyncAll { get; set; }
2022-03-11 14:21:04 +01:00
}