1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-01 09:42:19 -05:00
bitwarden/src/Admin/Models/BillingInformationModel.cs
Justin Baur 231eb84e69
Turn On ImplicitUsings (#2079)
* Turn on ImplicitUsings

* Fix formatting

* Run linter
2022-06-29 19:46:41 -04:00

12 lines
265 B
C#

using Bit.Core.Models.Business;
namespace Bit.Admin.Models
{
public class BillingInformationModel
{
public BillingInfo BillingInfo { get; set; }
public Guid? UserId { get; set; }
public Guid? OrganizationId { get; set; }
}
}