mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
11 lines
294 B
C#
11 lines
294 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Core.Models.Mail;
|
|
|
|
public class OrganizationSeatsMaxReachedViewModel : BaseMailModel
|
|
{
|
|
public int MaxSeatCount { get; set; }
|
|
public string VaultSubscriptionUrl { get; set; }
|
|
}
|