mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
8 lines
222 B
C#
8 lines
222 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class LicenseExpiredViewModel : BaseMailModel
|
|
{
|
|
public string OrganizationName { get; set; }
|
|
public bool IsOrganization => !string.IsNullOrWhiteSpace(OrganizationName);
|
|
}
|