2025-11-16 19:33:01 +08:00

27 lines
723 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SqlSugar;
using XPrintServer.DataModel.Models;
namespace XPrintServer.Business.Dto
{
public class ModelPartDto : ModelPart
{
/// <summary>
/// Desc:选择当前材质后摄像头的Alpha值
/// Nullable:False
/// </summary>
public string AlphaStr { get; set; } = "0";
/// <summary>
/// Desc:选择当前材质后摄像头的Beta值
/// Nullable:False
/// </summary>
public string BetaStr { get; set; } = "0";
/// <summary>
/// Desc:选择当前材质后摄像头的Radius值
/// Nullable:False
/// </summary>
public string RadiusStr { get; set; } = "0";
}
}