mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
14 lines
398 B
C#
14 lines
398 B
C#
using Bit.Api.Models.Request.Accounts;
|
|
|
|
namespace Bit.Api.Models.Request.Organizations
|
|
{
|
|
public class OrganizationTaxInfoUpdateRequestModel : TaxInfoUpdateRequestModel
|
|
{
|
|
public string TaxId { get; set; }
|
|
public string Line1 { get; set; }
|
|
public string Line2 { get; set; }
|
|
public string City { get; set; }
|
|
public string State { get; set; }
|
|
}
|
|
}
|