15 lines
338 B
C#
15 lines
338 B
C#
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; }
|
|
}
|
|
} |