blob: 5bc5bac479eb7cb09993009e671f24749a72bbf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Tango.Portal.Models;
namespace Tango.Portal.ViewModels
{
public class ProductVM : ViewModel
{
public ProductVM(SessionUser user) : base(user)
{
Environments = new List<string>();
Downloads = new List<DownloadItem>();
}
public String ProductKey { get; set; }
public String ProductName { get; set; }
public String ProductDescription { get; set; }
public String ProductImage { get; set; }
public List<String> Environments { get; set; }
public String SelectedEnvironment { get; set; }
public List<DownloadItem> Downloads { get; set; }
}
}
|