Przeprowadzka

This commit is contained in:
2026-07-16 12:25:33 +02:00
commit 10d59ede33
7016 changed files with 726877 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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;
}