20 lines
283 B
Swift
Raw Normal View History

2020-05-03 13:23:36 -05:00
//
2020-05-04 18:13:15 -05:00
// RedditMe.swift
2020-05-03 13:23:36 -05:00
// Account
//
2020-05-04 18:13:15 -05:00
// Created by Maurice Parker on 5/4/20.
2020-05-03 13:23:36 -05:00
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
2020-05-04 18:13:15 -05:00
struct RedditMe: Codable {
2020-05-03 13:23:36 -05:00
let name: String?
2020-05-04 18:13:15 -05:00
2020-05-03 13:23:36 -05:00
enum CodingKeys: String, CodingKey {
case name = "name"
}
}