view Library/LibrarySystem/Interfaces/IPublication.cs @ 42:0d4aff4f699d

Enabled nuget package restore on build
author adminsh@apollo
date Tue, 03 Apr 2012 23:32:40 +0100
parents dbd242eb9c33
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; }
    }
}