Last change
on this file since 10761 was
9586,
checked in by fschoepp, 12 years ago
|
#1888:
- Billing Component may now be deactivated by setting the BillingEnabled flag within the OaaS service configuration.
- Added views for invoices and usage data.
- Changed appearance of the SaveOrder view.
|
File size:
298 bytes
|
Rev | Line | |
---|
[9586] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Web;
|
---|
| 5 | using HeuristicLab.Services.Optimization.Billing.Model;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Services.Optimization.Web.Models {
|
---|
| 8 | public class UsageModel {
|
---|
| 9 | public IList<UsageRecord> Records { get; set; }
|
---|
| 10 | }
|
---|
| 11 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.