Files

24 lines
548 B
C#
Raw Permalink Normal View History

2025-12-11 09:17:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonEntity
{
public class SmartVoiceData
{
//小度
public string HotelCode { get; set; }
public string RoomNumber { get; set; }
public string XiaoDuCUID { get; set; }
public string TianMaoCUID { get; set; }
public string WelcomeSpeech { get; set; }
//断电重置
public bool IsPowerOffResetXiaoDu { get; set; }
public string GoodbyeSpeech { get; set; }
}
}