mirror of
https://github.com/writeas/writefreely-swiftui-multiplatform.git
synced 2024-11-15 01:11:02 +00:00
8 lines
108 B
Swift
8 lines
108 B
Swift
import Foundation
|
|
|
|
enum PostStatus: Int32 {
|
|
case local = 0
|
|
case edited = 1
|
|
case published = 2
|
|
}
|