Reading from database

This commit is contained in:
2019-01-19 17:08:56 +01:00
parent 25dc803cfd
commit 19fc2475fa
14 changed files with 607 additions and 13 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Vidly.Models
{
public class MembershipType
{
public byte Id { get; set; }
public short SignUpFee { get; set; }
public byte DurationInMonth { get; set; }
public byte DiscountRate { get; set; }
}
}