16 lines
276 B
Swift
16 lines
276 B
Swift
|
//
|
||
|
// Sender.swift
|
||
|
// NotificationService
|
||
|
//
|
||
|
// Created by Djorkaeff Alexandre Vilela Pereira on 9/15/20.
|
||
|
// Copyright © 2020 Rocket.Chat. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct Sender: Codable {
|
||
|
let _id: String
|
||
|
let username: String
|
||
|
let name: String?
|
||
|
}
|