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.

8 lines
193 B
C#
Raw Normal View History

namespace Bit.Core.Models.Mail;
2022-08-29 14:53:16 -04:00
public class OrganizationSeatsMaxReachedViewModel : BaseMailModel
{
public Guid OrganizationId { get; set; }
public int MaxSeatCount { get; set; }
}