1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Collect tax info, correct line1

This commit is contained in:
Chad Scharf
2020-06-12 19:35:17 -04:00
parent d88838f19e
commit 1552ff7b29
2 changed files with 25 additions and 8 deletions

View File

@ -136,5 +136,11 @@
return _taxIdType;
}
}
public bool HasTaxId
{
get => !string.IsNullOrWhiteSpace(TaxIdNumber) &&
!string.IsNullOrWhiteSpace(TaxIdType);
}
}
}