mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 16:13:12 +08: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; }
|
|||
|
|
}
|
|||
|
|
}
|