23 lines
398 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Forms
{
public class Person
{
public string Id { get; set; }
public string Name { get; set; }
public Person() { }
public Person(string name, string id)
{
Name = name;
Id = id;
}
}
}