Newer
Older
ClosedXML / ClosedXML / Excel / XLWorkbookProperties.cs
@Francois Botha Francois Botha on 30 May 2017 749 bytes Unknown changes - something to do with line endings?
using System;

namespace ClosedXML.Excel
{
    public class XLWorkbookProperties
    {
        public XLWorkbookProperties()
        { 
            Company = null;
            Manager = null;
        }
        public String Author { get; set; }
        public String Title { get; set; }
        public String Subject { get; set; }
        public String Category { get; set; }
        public String Keywords { get; set; }
        public String Comments { get; set; }
        public String Status { get; set; }
        public DateTime Created { get; set; }
        public DateTime Modified { get; set; }
        public String LastModifiedBy { get; set; }
        public String Company { get; set; }
        public String Manager { get; set; }
    }
}