12345678910111213141516171819202122 |
- using System.Text.Json.Serialization;
- namespace Vinno.vCloud.Common.FIS.Consultation
- {
- public class WhiteBoardDataDTO
- {
- [JsonPropertyName("u_Id")]
- public string UserId { get; set; }
- [JsonPropertyName("l_Id")]
- public string LineId { get; set; }
- [JsonPropertyName("color")]
- public string Color { get; set; }
- [JsonPropertyName("points")]
- public string Points { get; set; }
- [JsonPropertyName("isClear")]
- public string IsClear { get; set; }
- }
- }
|