EmojiDataSource.swift 322 B

123456789101112131415161718
  1. //
  2. // EmojiDataSource.swift
  3. // LoopKitUI
  4. //
  5. // Created by Michael Pangburn on 1/7/19.
  6. // Copyright © 2019 LoopKit Authors. All rights reserved.
  7. //
  8. struct EmojiSection {
  9. let title: String
  10. let items: [String]
  11. let indexSymbol: String
  12. }
  13. protocol EmojiDataSource {
  14. var sections: [EmojiSection] { get }
  15. }