mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Sync EF migrations for .NET / EF Core 8 (#4448)
* Sync EF migrations for .NET 8 * Format * Redo migrations with billing fix * Forgot to format again
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using Bit.Core.Entities;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Bit.Core.Entities;
|
||||
using Bit.Core.Utilities;
|
||||
|
||||
namespace Bit.Core.Billing.Entities;
|
||||
@ -7,9 +8,13 @@ public class ProviderInvoiceItem : ITableObject<Guid>
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid ProviderId { get; set; }
|
||||
[MaxLength(50)]
|
||||
public string InvoiceId { get; set; }
|
||||
[MaxLength(50)]
|
||||
public string InvoiceNumber { get; set; }
|
||||
[MaxLength(50)]
|
||||
public string ClientName { get; set; }
|
||||
[MaxLength(50)]
|
||||
public string PlanName { get; set; }
|
||||
public int AssignedSeats { get; set; }
|
||||
public int UsedSeats { get; set; }
|
||||
|
Reference in New Issue
Block a user