Movies included in database as well and handled in site
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
@ -8,6 +9,8 @@ namespace Vidly.Models
|
||||
public class MembershipType
|
||||
{
|
||||
public byte Id { get; set; }
|
||||
[StringLength(50)]
|
||||
public string Name { get; set; }
|
||||
public short SignUpFee { get; set; }
|
||||
public byte DurationInMonth { get; set; }
|
||||
public byte DiscountRate { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user