blob: ace2eca5f3f73bd6e320a0a37f734cf5f62ff776 [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from libs.structured_object import StructuredObject
class IntRange(StructuredObject):
"""Represents a generic integer range to include an upper and lower bound."""
lower = int
upper = int