changeset 0 | cfa10fbf52b3 |
child 1 | 80c685d55d63 |
-1:000000000000 | 0:cfa10fbf52b3 |
---|---|
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 } |