2019-03-12 22:40:11 -07:00
|
|
|
//
|
|
|
|
// AccountSettings.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 3/3/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2019-03-20 22:10:22 -07:00
|
|
|
final class AccountSettings: Codable {
|
2019-03-27 22:10:14 -07:00
|
|
|
|
|
|
|
var name: String?
|
2019-03-20 22:10:22 -07:00
|
|
|
}
|