25 lines
479 B
C#
25 lines
479 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
[Serializable]
|
|
public class ScoreModel
|
|
{
|
|
public string time;
|
|
public float score;
|
|
public List<ScoreInfo> pointList = new List<ScoreInfo>();
|
|
}
|
|
[Serializable]
|
|
public class ScoreInfo
|
|
{
|
|
public string point;
|
|
public string pointInfo;
|
|
/// <summary>
|
|
/// µÃ·Ö
|
|
/// </summary>
|
|
public float pointScore;
|
|
/// <summary>
|
|
/// ×Ü·Ö
|
|
/// </summary>
|
|
public float maxScore;
|
|
}
|