Describes database supported date and time intervals. Each member of the structure is a boolean value indicating whether the feature is supported or not.
You can find more information in comments below.
struct DbSupportedDateTimeIntervals
{
    bool Valid; // Indicates whether this structure contains valid data (it was successfully retrieved from data source) 
    bool SecondFracture;
    bool Second;
    bool Minute;
    bool Hour;
    bool Day;
    bool Week;
    bool Month;
    bool Quarter;
    bool Year;
    explicit operator String() const;
};
| Namespace: | nitisa | 
| Include: | Nitisa/Db/DbSupportedDateTimeIntervals.h |