/* * This class is part of the book "iText in Action - 2nd Edition" * written by Bruno Lowagie (ISBN: 9781935182610) * For more info, go to: http://itextpdf.com/examples/ * This example only works with the AGPL version of iText. */ /** * POJO for an object that corresponds with a record * in the table film_director. */ namespace kuujinbo.iTextInAction2Ed.Intro_1_2 { public class Director { // =========================================================================== public string Name { get; set; } public string GivenName { get; set; } // =========================================================================== } }