fcs-common/VatStateInfo.cs

13 lines
331 B
C#
Raw Normal View History

2022-04-07 17:39:23 +02:00
using System;
namespace FCS.Lib.Common
{
public class VatStateInfo
{
public string Name { get; set; } = "";
public string VatNumber { get; set; } = "";
public bool VatNumberValid { get; set; }
public bool HasFolded { get; set; }
public DateTime RequestDate { get; set; }
}
}