aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Settings/MachineStudio.cs
blob: bc486b6c3a011ddbf7ce0343cd41d395dfc08a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Cryptography;

namespace Tango.Settings
{
    public class MachineStudio
    {
        public String LastLoginEmail { get; set; }

        public String LastLoginPassword { get; set; }

        public bool RememberMe { get; set; }
    }
}