Skip to content

Instantly share code, notes, and snippets.

@anaselhajjaji
Created March 27, 2017 21:23
Show Gist options
  • Save anaselhajjaji/f6b97c0965561123979c46a788b22e73 to your computer and use it in GitHub Desktop.
Save anaselhajjaji/f6b97c0965561123979c46a788b22e73 to your computer and use it in GitHub Desktop.
using System;
namespace RememberIt
{
public class RememberThing
{
public string Name { get; set; }
public DateTime Deadline { get; set; }
public RememberThing()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment