File size: 282 Bytes
6f7ef5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace RankingApp.Models
{
    public class ItemModel
    {

        public int Id { get; set; }

        public string Title { get; set; }

        public int ImageId { get; set; }

        public int Ranking { get; set; }

        public int ItemType { get; set; }

    }
}