๐ Home > ๐ Data Types > ๐งฉ CTaskMsgComp
CTaskMsgComp
Namespace: TaskHelper
Assembly: TaskHelper
Properties
| Name | Type | Can Read | Can Write | Description |
|---|---|---|---|---|
| bComplete | Boolean |
โ | โ | |
| datecrt | DateTime |
โ | โ | |
| dir | Int32 |
โ | โ | |
| id | Int32 |
โ | โ | |
| msg | String |
โ | โ | |
| task_id | Int32 |
โ | โ |
Usage Examples
C# Example
var obj = new CTaskMsgComp
{
id = 123,
task_id = 123,
msg = "sample string",
datecrt = DateTime.Now,
dir = 123,
bComplete = true,
};
JSON Representation
{
"id": 123,
"task_id": 123,
"msg": "string",
"datecrt": "2024-01-01T00:00:00",
"dir": 123,
"bComplete": true
}
Navigation
โฌ ๏ธ Back to Data Types | ๐ API Overview | ๐ป Code Examples