mirror of
https://github.com/MonitorControl/MonitorControl.git
synced 2026-05-15 14:15:55 -06:00
16 lines
372 B
Swift
16 lines
372 B
Swift
//
|
|
// Preferences+Extension.swift
|
|
// MonitorControl
|
|
//
|
|
// Created by Joni Van Roost on 22/11/2020.
|
|
// Copyright © 2020 MonitorControl. All rights reserved.
|
|
//
|
|
|
|
import Preferences
|
|
|
|
extension Preferences.PaneIdentifier {
|
|
static let main = Self("Main")
|
|
static let keys = Self("Keys")
|
|
static let advanced = Self("Advanced")
|
|
static let display = Self("Display")
|
|
}
|