aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.Portal/Models/DownloadItem.cs
blob: 5f4e8601c9a1dec6e67d1e9dd830015f214398d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Tango.Portal.Models
{
    public class DownloadItem
    {
        public String Name { get; set; }
        public String Description { get; set; }
        public String Date { get; set; }
        public String URL { get; set; }
    }
}