blob: a6729e4a5486f1a00f1e91a97b1573f7a7f0c288 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from common.ConfigGroup import *
from CGFax import CGFax
class CGFaxWizard(ConfigGroup):
def __init__(self):
self.cp_FaxType = int()
self.cp_BusinessFax = CGFax()
self.cp_PrivateFax = CGFax()
|