|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.Api.Request
|
|
{
|
|
public class CaseUpdate
|
|
{
|
|
public string CaseID { get; set; }
|
|
public string UpdateMsg { get; set; }
|
|
public string SessionID { get; set; }
|
|
}
|
|
}
|
|
|