using Blahblah.FlowerApp.Data.Model; using static Blahblah.FlowerApp.PropertyExtension; namespace Blahblah.FlowerApp.Controls; public class FlowerClientItem : BindableObject { static readonly BindableProperty NameProperty = CreateProperty(nameof(Name)); static readonly BindableProperty CategoryProperty = CreateProperty(nameof(Category)); static readonly BindableProperty CoverProperty = CreateProperty(nameof(Cover)); static readonly BindableProperty BoundsProperty = CreateProperty(nameof(Bounds)); public int Id { get; } public FlowerItem? FlowerItem { get; } public string Name { get => (string)GetValue(NameProperty); set => SetValue(NameProperty, value); } public int Category { get => (int)GetValue(CategoryProperty); set => SetValue(CategoryProperty, value); } public ImageSource? Cover { get => (ImageSource?)GetValue(CoverProperty); set => SetValue(CoverProperty, value); } public Rect Bounds { get => (Rect)GetValue(BoundsProperty); set => SetValue(BoundsProperty, value); } public int? Width { get; set; } public int? Height { get; set; } public FlowerClientItem(int id) { Id = id; } public FlowerClientItem(FlowerItem item) : this(item.Id) { FlowerItem = item; Name = item.Name; Category = item.Category; if (item.Photos?.Length > 0 && item.Photos[0] is PhotoItem cover) { Width = cover.Width; Height = cover.Height; } } }