caiyue1993/IceCream

How to ignore an Object with specific type sync to cloud?

WilliamZhangWH opened this issue · 1 comments

For Example:

I have an Object called 'Provider'

open class Provider: Object {
    @objc dynamic public var isDeleted = false
    
    @objc dynamic var id: String = UUID().uuidString
    @objc dynamic var name: String = ""
    @objc dynamic var type = ProviderType.Local.rawValue (👈🏻 Ignore '.Local' type Object sync to cloud)
}

@caiyue1993 Please help me.