Last change
on this file since 7317 was
7281,
checked in by spimming, 13 years ago
|
#1680:
- Subscription DTO
- View for subscription items
- Dialog to add new azure subscription
- General view for cloud resources
|
File size:
561 bytes
|
Line | |
---|
1 | using System.Windows.Forms;
|
---|
2 | using HeuristicLab.Clients.Hive.CloudManager.Model;
|
---|
3 | using HeuristicLab.Core.Views;
|
---|
4 | using HeuristicLab.MainForm;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Clients.Hive.CloudManager.Views {
|
---|
7 | [View("SubscriptionView")]
|
---|
8 | [Content(typeof(Subscription), IsDefaultView = true)]
|
---|
9 | public partial class SubscriptionView : ItemView {
|
---|
10 | public new Subscription Content {
|
---|
11 | get { return (Subscription)base.Content; }
|
---|
12 | set { base.Content = value; }
|
---|
13 | }
|
---|
14 |
|
---|
15 | public SubscriptionView() {
|
---|
16 | InitializeComponent();
|
---|
17 | }
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.