1
0
mirror of https://github.com/Toxblh/MTMR.git synced 2026-01-12 18:08:37 +00:00
MTMR/MTMR/Widgets/WidgetProtocol.swift
2018-10-20 23:21:30 +01:00

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 }
}