14 lines
220 B
Swift
14 lines
220 B
Swift
//
|
|
// DonationRankingPeriod.swift
|
|
// SodaLive
|
|
//
|
|
// Created by Codex on 2026/02/03.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum DonationRankingPeriod: String, Codable {
|
|
case weekly = "WEEKLY"
|
|
case cumulative = "CUMULATIVE"
|
|
}
|