9 lines
127 B
Python
9 lines
127 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from common import ApiModel
|
||
|
|
|
||
|
|
|
||
|
|
class MemberRef(ApiModel):
|
||
|
|
id: int
|
||
|
|
display_name: str
|