Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created December 3, 2015 21:10
Show Gist options
  • Save samueleresca/81861081fa4562a0acb2 to your computer and use it in GitHub Desktop.
Save samueleresca/81861081fa4562a0acb2 to your computer and use it in GitHub Desktop.
//Class Telefilm
public class Telefilm
{
public int TelefilmId { get; set; }
public string TelefilmName { get; set; }
public DateTime CreateDate { get; set; }
}
//Class Character
public class Character
{
public int CharacterId { get; set; }
public int TelefilmId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment