aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/EngineShiftnetSubscription.cs
blob: c319f18dd70e53cbeed439716f0b371624c3bb6e (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 uint CostPerMonth { get; set; }
        public int DownloadSpeed { get; set; }
        public string Company { get; set; }
    }
}