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
+28
View File
@@ -0,0 +1,28 @@
namespace HomePantry.Views.Controls;
public partial class ProductCard : ContentView
{
public static readonly BindableProperty ProductNameProperty = BindableProperty.Create(nameof(ProductName), typeof(string), typeof(ProductCard), string.Empty);
public string ProductName
{
get => (string)GetValue(ProductNameProperty);
set => SetValue(ProductNameProperty, value);
}
public static readonly BindableProperty ProductInfoProperty = BindableProperty.Create(nameof(ProductInfo), typeof(string), typeof(ProductCard), string.Empty);
public string ProductInfo
{
get => (string)GetValue(ProductInfoProperty);
set => SetValue(ProductInfoProperty, value);
}
public static readonly BindableProperty ExpiryDateProperty = BindableProperty.Create(nameof(ExpiryDate), typeof(string), typeof(ProductCard), string.Empty);
public string ExpiryDate
{
get => (string)GetValue(ExpiryDateProperty);
set => SetValue(ExpiryDateProperty, value);
}
public ProductCard()
{
InitializeComponent();
}
}