KeymailSpecials2/Components/Services/GlobalService.cs

9 lines
224 B
C#
Raw Permalink Normal View History

2024-03-18 09:19:07 +00:00
namespace KeymailSpecials2.Components.Services;
public class GlobalService
{
public string WebsiteName { get; set; } = "KeyMail Specials";
public int YearInFooter { get; set; } = DateTime.Today.AddDays(-14).Year;
}