Only objects with the [System.Serializable] attribute are visible in the inspector. This means that you cannot expose DateTime, as it doesn’t have this attribute. What you could do is write your own wrapper class that exposes those properties of DateTime that you want in the inspector. Then in the Start function convert it to a DateTime object.