mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 13:38:13 -05:00
11 lines
230 B
C#
11 lines
230 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Mail
|
|
{
|
|
public class OrganizationSeatsMaxReachedViewModel : BaseMailModel
|
|
{
|
|
public Guid OrganizationId { get; set; }
|
|
public int MaxSeatCount { get; set; }
|
|
}
|
|
}
|