WhiteBoardDataDTO.cs 539 B

12345678910111213141516171819202122
  1. using System.Text.Json.Serialization;
  2. namespace Vinno.vCloud.Common.FIS.Consultation
  3. {
  4. public class WhiteBoardDataDTO
  5. {
  6. [JsonPropertyName("u_Id")]
  7. public string UserId { get; set; }
  8. [JsonPropertyName("l_Id")]
  9. public string LineId { get; set; }
  10. [JsonPropertyName("color")]
  11. public string Color { get; set; }
  12. [JsonPropertyName("points")]
  13. public string Points { get; set; }
  14. [JsonPropertyName("isClear")]
  15. public string IsClear { get; set; }
  16. }
  17. }