view Library/LibrarySystem/Interfaces/IPublication.cs @ 41:dbd242eb9c33

Initial wave of TDD development
author adminsh@apollo
date Tue, 03 Apr 2012 23:29:32 +0100
parents
children aef06698d9e2
line wrap: on
line source

namespace LibrarySystem.Interfaces
{
    public interface IPublication
    {
        string Author { get; set; }
        string ISBN { get; set; }
        IPublisher Publisher { get; set; }
        string Title { get; set; }
    }
}