Alarm.Alarm.Alarm C# (CSharp) Method

Alarm() public method

public Alarm ( ) : System
return System
        public Alarm()
        {
            ID = -1;
            Name = "";
            Hours = -1;
            Minutes = -1;
            Seconds = -1;
            Mon = false;
            Tue = false;
            Wed = false;
            Thu = false;
            Fri = false;
            Sat = false;
            Sun = false;
            Enabled = false;
        }

Same methods

Alarm::Alarm ( int id, string name, int hours, int minutes, int seconds, bool mon, bool tue, bool wed, bool thu, bool fri, bool sat, bool sun, bool enabled ) : System
Alarm