NetNewsWire/Frameworks/Account/AccountSettings.swift

18 lines
287 B
Swift
Raw Normal View History

//
// AccountSettings.swift
// Account
//
// Created by Brent Simmons on 3/3/19.
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
//
import Foundation
final class AccountSettings: Codable {
var name: String?
2019-05-02 12:41:44 +02:00
var isActive: Bool = true
var username: String?
2019-05-02 12:41:44 +02:00
}