Created
September 17, 2019 17:06
-
-
Save vporton/996680ab856fea1229f467828256ac96 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
using System.ComponentModel.DataAnnotations; | |
using System.ComponentModel.DataAnnotations.Schema; | |
namespace BravoDB.Models.Tables | |
{ | |
[Table("AdvShows")] | |
public class AdvShowsTable | |
{ | |
[Key] | |
public int AdvOrderID { get; set; } | |
[Key] | |
public int ShowID { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment