8 lines
171 B
C#
8 lines
171 B
C#
|
namespace Common;
|
||
|
|
||
|
public class SyncMsg(bool isSuccess, string body)
|
||
|
{
|
||
|
public bool IsSuccess { get; set; } = isSuccess;
|
||
|
public string Body { get; set; } = body;
|
||
|
}
|