12 * employee1.MonthlySalary );. . .}4.14 (Date Class) Create a class called Date that includes three pieces of information asautomatic properties—a month (type int), a day (type int) and a year (type int). Your classshould have a constructor that initializes the three automatic properties and assumes thatthe values provided are correct. Provide a method DisplayDate that displays the month,day and year separated by forward slashes (/). Write a test app named DateTest thatdemonstrates class Date’s capabilities.public class Date {// fieldsprivate int month;private int day;private int year;// constructorpublic Date(int month, int day, int year){this.month = month;this.day = day;this.year = year;}public void setMonth(int month){this.month = month;}public void setDay(int day){this.day = day;}public void setYear(int year){this.year = year;