This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/2018-06-30_Layers/Common/Classes/Person.cs

15 lines
254 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
public class Person
{
public int ID { get; set; }
public string Name { get; set; }
}
}