blob: d6c646521efd9f65f467da8f9ab117b3a7ae2a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using CommunityToolkit.Mvvm.ComponentModel;
namespace east_auctioner.Models;
public class BidItem : ObservableObject
{
private bool _isDisplayed;
public bool IsDisplayed
{
get { return _isDisplayed; }
set { this.SetProperty(ref _isDisplayed, value); }
}
private string _title;
public string Title
{
get { return _title; }
set { this.SetProperty(ref _title, value); }
}
}
|