File: __init__.py

package info (click to toggle)
python-aioazuredevops 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 304 kB
  • sloc: python: 1,770; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 186 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Models."""

from dataclasses import dataclass
from typing import TypeVar

T = TypeVar("T")


@dataclass
class ListResult[T]:
    """List result."""

    count: int
    value: list[T]