mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
8 lines
193 B
C#
8 lines
193 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class OrganizationSeatsMaxReachedViewModel : BaseMailModel
|
|
{
|
|
public Guid OrganizationId { get; set; }
|
|
public int MaxSeatCount { get; set; }
|
|
}
|