Is there a type like enum that would allow me to merge these variable into one
    private string StringPropertie;
    private int IntPropertie;
    private float floatPropertie;
    private DateTime DatetimePropertie;
    private bool boolPropertie;
to something has follow.
private enumtype property
