mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
17 lines
268 B
Swift
17 lines
268 B
Swift
//
|
|
// Credentials.swift
|
|
// RSWeb
|
|
//
|
|
// Created by Brent Simmons on 12/9/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Credentials {
|
|
|
|
var username: String? { get set }
|
|
var password: String? { get set }
|
|
}
|
|
|