using DataEntity.Sockets; using DataEntity.Sockets.Base; using Newtonsoft.Json; using System.Windows.Media.Media3D; namespace DataEntity.Sockets.TakePhoto { /// /// TakePhotoParameter /// public class TakePhotoParameter { /// /// 所用拍照模型对象 /// public Model model { get; set; } /// /// 拍照参数 /// [JsonProperty(PropertyName = "params")] public Params param { get; set; } //public Filter filter { get; set; } //public Paint paint { get; set; } /// /// 配置选项 /// public Optional optional { get; set; } /// /// 光源对象 /// public Light light { get; set; } } }