author | Markus Bröker<mbroeker@4customers.de> |
Wed, 29 Mar 2017 06:02:36 +0200 | |
changeset 0 | cfa10fbf52b3 |
child 1 | 80c685d55d63 |
permissions | -rw-r--r-- |
0 | 1 |
/** |
2 |
* Payment.cs |
|
3 |
* |
|
4 |
* @author Markus Bröker<broeker.markus@googlemail.com> |
|
5 |
* @copyright Copyright(C) 2017 4Customers UG |
|
6 |
* |
|
7 |
*/ |
|
8 |
using System; |
|
9 |
using System.Collections.Generic; |
|
10 |
using System.Linq; |
|
11 |
using System.Text; |
|
12 |
using System.Threading.Tasks; |
|
13 |
||
14 |
namespace Sales |
|
15 |
{ |
|
16 |
class Payment |
|
17 |
{ |
|
18 |
public enum PaymentType { NOW, WEEK, MONTH }; |
|
19 |
} |
|
20 |
} |