Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.ComponentModel.DataAnnotations;
- namespace AdmissionsRepresentatives.Models
- {
- public class Cart
- {
- [Key]
- public int RecordId { get; set; }
- public int Count { get; set; }
- public int ProductId { get; set; }
- public string CartId { get; set; }
- public System.DateTime DateCreated { get; set; }
- public virtual Product Product { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment