17 lines
259 B
Swift
17 lines
259 B
Swift
//
|
|
// FontSize.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 1/26/25.
|
|
// Copyright © 2025 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum FontSize: Int {
|
|
case small = 0
|
|
case medium = 1
|
|
case large = 2
|
|
case veryLarge = 3
|
|
}
|