Skip to content

Instantly share code, notes, and snippets.

@josephhhhh
Last active February 12, 2018 04:59
Show Gist options
  • Save josephhhhh/b3ec01f16bf0407a112710a01c153043 to your computer and use it in GitHub Desktop.
Save josephhhhh/b3ec01f16bf0407a112710a01c153043 to your computer and use it in GitHub Desktop.
namespace CascadeDelete.Models
{
public class ResidentCityOwn
{
public int Id { get; set; }
[Required]
[StringLength(50)]
public string Title { get; set; }
[Required]
public int ResidentId { get; set; }
[Required]
public int CityId { get; set; }
// navigation props
public virtual Resident Resident { get; set; }
public virtual City City { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment