
gungControllers.factory('DiscountCodeExtraConfig', function(){
    return {
        type: 'object',
        properties: {
            OGA: {
                type: 'object',
                properties: {
                    RAB: {
                        type: 'string'
                    }
                },
                defaultProperties: ['RAB']
            }
        },
        defaultProperties: ['OGA']
    };
});

gungControllers.factory('DiscountCodeExtraForRowConfig', function(){
    return {
        type: 'object',
        properties: {
            _rows: {
                type: 'string'
            },
            _extra: {
                type: 'string'
            }
        },
        defaultProperties: ['_rows', '_extra']
    };
});
