summaryrefslogtreecommitdiff
path: root/Models/BidItem.cs
blob: 1828bfc4852511f4b54f17cc3b5c98723f16707b (plain)
1
2
3
4
5
6
7
8
namespace east_auctioner.Models;

public class BidItem
{
    public bool IsDisplayed { get; set; }

    public string Title { get; set; } = "";
}