fcs-virk/VrQuery.cs

10 lines
271 B
C#
Raw Normal View History

2022-02-21 18:08:26 +01:00
namespace FCS.Virk
{
public class VrQuery
{
public string VatNumber { get; set; } = "";
public string StreetName { get; set; } = "";
public string HouseNumber { get; set; } = "";
public string ZipCode { get; set; } = "";
}
}