2025-03-05 11:31:36 +09:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class WorkConditionFacilityData
|
|
|
|
|
{
|
2025-03-05 15:22:39 +09:00
|
|
|
public string status;
|
|
|
|
|
public string code;
|
|
|
|
|
public string message;
|
|
|
|
|
public string[] data;
|
|
|
|
|
public string remark;
|
2025-03-05 11:31:36 +09:00
|
|
|
}
|