aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/EngineShiftnetSubscription.cs
blob: 1296a9840721ffa0e21563a8a3c8a9d9399c894a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ShiftOS.Objects
{
    public class EngineShiftnetSubscription
    {
        public string Name { get; set; }
        public string Description { get; set; }
        public int CostPerMonth { get; set; }
        public int DownloadSpeed { get; set; }
        public string Company { get; set; }
    }
}