// Directions: Intermediate #7-1 - Movie Theatre
// 1) Fork this fiddle to your workspace area.
// 2) Create a class representing a Movie with the following properties:
// Id : int
// Name : string
// DebutDate : DateTime
// IsFavorite : bool
// 3) Declare and instantiate a movie object.
// 4) Set all the movie properties with any values of your choice
// 5) Display Intermediate 7-1 : Created Die Hard.
// 6) Submit your dotnetfiddle link in Blackboard.
using System;
/****************************
* Create class here
***************************/
public class Program
{
public static void Main()
// Instantiate movie object here.
// Set Properties here.
// Ouptut
Console.WriteLine("Intermediate 7-1 : Created " + movie.Name);
}