Files
server/src/Core/Models/Mail/OrganizationSeatsMaxReachedViewModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
294 B
C#
Raw Normal View History

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Models.Mail;
2022-08-29 16:06:55 -04:00
public class OrganizationSeatsMaxReachedViewModel : BaseMailModel
{
public int MaxSeatCount { get; set; }
public string VaultSubscriptionUrl { get; set; }
}