Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Category change. Fixes #1. #347

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ namespace PartsUnlimited.Models
{
public class CartItem : ILineItem
{
// my first comment
//My second change.
[Key]
public int CartItemId { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace PartsUnlimited.Models
{
public class Category
{
//My third change
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice job

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice !

public int CategoryId { get; set; }

[Required]
Expand Down