Files
HomePantry-MAUI/ViewModels/PantryInfo.cs
T
2026-07-16 12:25:33 +02:00

10 lines
459 B
C#
Executable File

namespace HomePantry.ViewModels;
public class PantryInfo
{
public string AppTitle { get; set; } = "🏠 Domowa spiżarnia";
public string Subtitle { get; set; } = "Twoja wirtualna spiżarnia - zawsze pod ręką!";
public string CurrentDate { get; set; } = DateTime.Now.ToString("dddd, d MMMM yyyy", new System.Globalization.CultureInfo("pl-PL"));
public int TotalProducts { get; set; } = 0;
public int ExpiredProducts { get; set; } = 0;
}