1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-14 17:48:12 -05:00
bitwarden/src/Admin/Models/BillingInformationModel.cs
2019-02-25 12:43:20 -05:00

13 lines
279 B
C#

using System;
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; }
}
}