mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-11 09:14:06 +01:00
20 lines
283 B
Swift
20 lines
283 B
Swift
//
|
|
// RedditMe.swift
|
|
// Account
|
|
//
|
|
// Created by Maurice Parker on 5/4/20.
|
|
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct RedditMe: Codable {
|
|
|
|
let name: String?
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case name = "name"
|
|
}
|
|
|
|
}
|