mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-12 18:08:37 +00:00
14 lines
296 B
Swift
14 lines
296 B
Swift
//
|
|
// WidgetProtocol.swift
|
|
// MTMR
|
|
//
|
|
// Created by Anton Palgunov on 20/10/2018.
|
|
// Copyright © 2018 Anton Palgunov. All rights reserved.
|
|
//
|
|
|
|
protocol Widget {
|
|
static var name: String { get }
|
|
static var identifier: String { get }
|
|
static var decoder: ParametersDecoder { get }
|
|
}
|