26 lines
659 B
C#
26 lines
659 B
C#
namespace DefaultNamespace.Dto
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public class EnergyWorkList
|
|
{
|
|
public string keywork { get; set; }
|
|
public string valuework { get; set; }
|
|
}
|
|
|
|
public class EnergyInformation
|
|
{
|
|
public string work { get; set; }
|
|
public List<EnergyWorkList> worklist { get; set; }
|
|
}
|
|
|
|
public class SceneData
|
|
{
|
|
public string scenename { get; set; }
|
|
public string questbooks { get; set; }
|
|
public string userinformation { get; set; }
|
|
public string energyinformation { get; set; }
|
|
public List<EnergyInformation> energylist { get; set; }
|
|
}
|
|
|
|
} |