fcs-common/VatInfoDto.cs

73 lines
2.5 KiB
C#
Raw Normal View History

2022-04-03 11:19:17 +02:00
// ***********************************************************************
// Assembly : FCS.Lib.Virk
// Author : FH
// Created : 01-01-2022
//
// Last Modified By : FH
// Last Modified On : 02-24-2022
// ***********************************************************************
// <copyright file="VatInfoDto.cs" company="FCS">
// 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 Affero GNU 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
// Affero GNU General Public License for more details.
//
// You should have received a copy of the Affero GNU General Public License
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
// </copyright>
// <summary></summary>
// ***********************************************************************
using System.Collections.Generic;
namespace FCS.Lib.Common
{
2022-11-16 11:33:56 +01:00
/// <summary>
/// Class VatInfoDto
/// </summary>
2022-04-03 11:19:17 +02:00
public class VatInfoDto
{
2022-11-16 11:33:56 +01:00
/// <summary>
/// Entity vat number
/// </summary>
2022-04-03 11:19:17 +02:00
public string VatNumber { get; set; } = "";
2022-11-16 11:33:56 +01:00
/// <summary>
/// Entity name
/// </summary>
2022-04-03 11:19:17 +02:00
public string Name { get; set; } = "";
2022-11-16 11:33:56 +01:00
/// <summary>
/// Entity co-location name
/// </summary>
2022-04-03 11:19:17 +02:00
public string CoName { get; set; } = "";
2022-11-16 11:33:56 +01:00
/// <summary>
/// Entity address
/// </summary>
2022-04-03 11:19:17 +02:00
public string Address { get; set; } = "";
2022-11-16 11:33:56 +01:00
/// <summary>
/// Entity City
/// </summary>
2022-04-03 11:19:17 +02:00
public string City { get; set; } = "";
2022-11-16 11:33:56 +01:00
/// <summary>
/// Entity postal code
/// </summary>
2022-04-03 11:19:17 +02:00
public string ZipCode { get; set; } = "";
2022-11-16 11:33:56 +01:00
/// <summary>
/// List of entity states
/// </summary>
2022-04-03 11:19:17 +02:00
public List<VatState> States { get; set; } = new();
2022-11-16 11:33:56 +01:00
/// <summary>
/// List of entity life cycles
/// </summary>
2022-04-03 11:19:17 +02:00
public List<LifeCycle> LifeCycles { get; set; } = new();
2022-11-16 11:33:56 +01:00
/// <summary>
/// Registrar request date
/// </summary>
2022-04-07 17:39:23 +02:00
public string RequestDate { get; set; }
2022-04-03 11:19:17 +02:00
}
}