Last change
on this file since 9573 was
9556,
checked in by fschoepp, 12 years ago
|
#1888:
- Added views for the billing component (Register users, Create orders and Activate Orders view)
- Added a mockup for the billing back-end .
|
File size:
337 bytes
|
Line | |
---|
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 |
|
---|
9 | public class OrderAdminModel {
|
---|
10 | public long OrderId { get; set; }
|
---|
11 | public IList<Order> Orders { get; set; }
|
---|
12 | }
|
---|
13 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.