Created
September 19, 2019 12:16
-
-
Save mikebeaton/cc353c718773c350c3444e87a07b78c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DatabaseTable("films")] | |
public class Film | |
{ | |
[DatabaseColumn("film_id")] | |
public int FilmID; | |
[DatabaseColumn("film_title")] | |
public int Title; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment