mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Resolves #70 Freq/Channel will turn orange when double booked. Freq will turn red if GUARD freq was assigned.
7 lines
126 B
Python
7 lines
126 B
Python
from typing import Optional
|
|
|
|
|
|
class ICLSContainer:
|
|
icls_channel: Optional[int] = None
|
|
icls_name: Optional[str] = None
|