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 05:41:44 -05:00
var isActive: Bool = true
var username: String?
2019-05-02 05:41:44 -05:00
}