aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Models/Person.cs
blob: c54d44e8fd1f5f0c15103a7517a9332c27d35976 (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.MachineService.Models
{
    public class Person
    {
        public String FirstName { get; set; }

        public String LastName { get; set; }
    }
}