hytos / DTI_PID / WebServer / app / api / models.py @ bb5f022f
이력 | 보기 | 이력해설 | 다운로드 (444 Bytes)
1 |
# coding: utf-8
|
---|---|
2 |
"""This is license module"""
|
3 |
|
4 |
from flask_restx import Namespace, fields |
5 |
|
6 |
|
7 |
class LicenseDTO: |
8 |
api = Namespace('license', description='license related operations') |
9 |
license = api.model('license', {
|
10 |
'authorization': fields.String(requried=True, description='authorization'), |
11 |
'computer_name': fields.String(required=True, description='computer name'), |
12 |
'code': fields.String(description='code') |
13 |
}) |
14 |
|