aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.Portal/Models/Statistics.cs
blob: 54e2de9e19db32e8c5830965f44f01c4830aa39d (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 Statistics
    {
        public int TotalDyedThread { get; set; }
        public int JobsCompleted { get; set; }
        public int SoftwareUpgrades { get; set; }
    }
}