com.alicizax.unity.tuyoogam.../Editor/AssetArtReporter/ReportScanInfo.cs

26 lines
541 B
C#
Raw Normal View History

2025-02-28 16:11:01 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
namespace YooAsset.Editor
{
[Serializable]
public class ReportScanInfo
{
/// <summary>
/// 标题
/// </summary>
public string HeaderTitle;
/// <summary>
/// 扫描反馈的信息
/// </summary>
public string ScanInfo;
public ReportScanInfo(string headerTitle, string scanInfo)
{
HeaderTitle = headerTitle;
ScanInfo = scanInfo;
}
}
}