|
@@ -37,12 +37,19 @@ namespace TEAMModelOS.SDK.Models
|
|
|
public string type { get; set; } //"exam":評量 "join":報名 "other":其他
|
|
|
public string examType { get; set; } //評量類型 "regular":一般競賽 "custom":挑戰賽
|
|
|
public bool examOverwrite { get; set; } //評量可否重複作答 true:可 false:不可
|
|
|
- public string blob { get; set; } //說明文件存放Blob路徑
|
|
|
+ public List<JointEventScheduleBlob> blobs { get; set; } = null; //說明文件存放Blob
|
|
|
+ public string location { get; set; } //地點
|
|
|
+ public string description { get; set; } //說明
|
|
|
public long startTime { get; set; }
|
|
|
public long endTime { get; set; }
|
|
|
public string progress { get; set; } //進行狀況 "pending" "going" "finish"
|
|
|
public int orderby { get; set; } //排序
|
|
|
}
|
|
|
+ public class JointEventScheduleBlob
|
|
|
+ {
|
|
|
+ public string name { get; set; } //檔案名稱
|
|
|
+ public string blob { get; set; } //檔案Blob路徑
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/// <summary>
|