mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
14 lines
220 B
Swift
14 lines
220 B
Swift
//
|
|
// ServerRuleItem.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK on 2022-1-5.
|
|
//
|
|
|
|
import Foundation
|
|
import MastodonSDK
|
|
|
|
enum ServerRuleItem: Hashable {
|
|
case rule(index: Int, rule: Mastodon.Entity.Instance.Rule)
|
|
}
|