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

namespace Tango.Portal.Models
{
    public class AzureBlob
    {
        public String Name { get; set; }
        public DateTime LastModified { get; set; }
        public String URL { get; set; }
    }
}