I have the following C# Code
public class MeasurementData
{
#region Public Properties
public int ADC { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }
public int SensorID { get; set; }
public DateTime Day { get;set; }
public int CO2 { get; set; }
#endregion
}
and the code looks with minted like this:

This is very very close to perfect. Except that DateTime is not colored. I know that minted can't be able to know what this is, because it does not know my code. Minted does only know a snipped. But i'd like to color it myself with telling minted how to color this Word(s). is there an option? It would be great when i could say that this are my classes:
define classes {DateTime, MyClass, ... }
and then this classes are color in bright blue or sth. The color is not that important. i think i am able to figure the coloring out myself.
Haven't found something on the net :(