1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 00:03:54 +00:00

[EC-489] chore: remove obsolete identifier field (#2635)

* [EC-489] chore: remove obsolete `identifier` field

* [EC-489] chore: remove identifier from org response model
This commit is contained in:
Andreas Coroiu
2023-02-08 16:33:45 +01:00
committed by GitHub
parent e3fdb2636b
commit 04c4be8a15
2 changed files with 0 additions and 6 deletions

View File

@@ -17,7 +17,6 @@ public class OrganizationResponseModel : ResponseModel
}
Id = organization.Id.ToString();
Identifier = organization.Identifier;
Name = organization.Name;
BusinessName = organization.BusinessName;
BusinessAddress1 = organization.BusinessAddress1;
@@ -51,7 +50,6 @@ public class OrganizationResponseModel : ResponseModel
}
public string Id { get; set; }
public string Identifier { get; set; }
public string Name { get; set; }
public string BusinessName { get; set; }
public string BusinessAddress1 { get; set; }