10 lines
302 B
Python
10 lines
302 B
Python
from pydantic import BaseModel
|
|
from typing import List, Optional
|
|
from sdk_server.models.config.response_base import ResponseBase
|
|
|
|
class CompareProtocolVerRsp(ResponseBase):
|
|
class Data(BaseModel):
|
|
modified: bool
|
|
protocol: Optional[List[str]] = []
|
|
|
|
data: Optional[Data] = None |