10 lines
459 B
C#
Executable File
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;
|
|
} |