Design a system that can be used to issue mobile devices to students.
Your application must have the following classes and properties: mobile devices: brand, model, type, student name, student number. Laptop: storage size, processor speed. Tablet: Screensize. Write c# code for the creation of the specified classes. Your application must have methods to print the details of an allocated device, the details must be printed out to a listview.Your properties must have appropriate constructors that take all the given properties for each respective class. Complete the given method for the AddMobileDevice button on your form to demonstrate how your classes can be used by instantiating a Laptop object and a Tablet object. private void AddMobileDevice_Click(object sender, Event Args e) { //Add your code here for instantiating the objects }