view Library/LibrarySystem/Interfaces/IPerson.cs @ 48:d617b54e1f47

WPF 4 version
author Steven Hollidge <stevenhollidge@hotmail.com>
date Sat, 07 Apr 2012 11:54:25 +0100
parents aef06698d9e2
children
line wrap: on
line source


namespace LibrarySystem.Interfaces
{
    public interface IPerson
    {
        string Address { get; }
        string Name { get; }
    }
}