You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/// 图片的同步状态 |
|
enum ImageStatus { |
|
/// 新增的本地图片,需要上传 |
|
local, |
|
|
|
/// 已上传,本地无修改 |
|
synced, |
|
|
|
/// 已同步,但已在本地删除,需要通知服务器 |
|
deleted, |
|
}
|
|
|