aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/User.cs
blob: 87c38c32be26a0e7f825df00952e700b2914f711 (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.Threading.Tasks;

namespace Timeline.Entities
{
    public class User
    {
        public int Id { get; set; }
        public string Username { get; set; }
        public string Password { get; set; }
    }
}