mirror of
https://github.com/bitwarden/server.git
synced 2025-04-26 23:32:19 -05:00
11 lines
239 B
C#
11 lines
239 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; }
|
|
}
|