Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/SubscriptionView.cs @ 7317

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
RevLine 
[7281]1using System.Windows.Forms;
2using HeuristicLab.Clients.Hive.CloudManager.Model;
3using HeuristicLab.Core.Views;
4using HeuristicLab.MainForm;
5
6namespace 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.