namespace BCards.Web.Areas.Support.Models; public class SupportOptions { public bool CanRate { get; set; } public bool CanUseContactForm { get; set; } public bool CanAccessTelegram { get; set; } public string? TelegramUrl { get; set; } public string? FormspreeUrl { get; set; } public string UserPlan { get; set; } = "Trial"; }