added base vat info class

This commit is contained in:
FH 2022-04-06 12:03:28 +02:00
parent 3dc68319b8
commit 789dfc49e0
2 changed files with 16 additions and 0 deletions

15
BaseVatInfo.cs Normal file
View file

@ -0,0 +1,15 @@
namespace FCS.Lib.Common
{
public class BaseVatInfo
{
public string Name { get; set; }
public string CoName { get; set; }
public string Address { get; set; }
public string ZipCode { get; set; }
public string City { get; set; }
public string VatNumber { get; set; }
public int VatNumberValid { get; set; }
public int HasFolded { get; set; }
public string RequestDate { get; set; }
}
}

View file

@ -44,6 +44,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BaseVatInfo.cs" />
<Compile Include="VatInfoDto.cs" />
<Compile Include="VatState.cs" />
<Compile Include="LifeCycle.cs" />