You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
477 B
25 lines
477 B
4 years ago
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
/// <summary>
|
||
|
/// 灾情信息
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class DisasterInfo
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Id。
|
||
|
/// </summary>
|
||
|
public int Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 灾情名称。
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
/// <summary>
|
||
|
/// 最近修改时间。
|
||
|
/// </summary>
|
||
|
public string LastTime { get; set; }
|
||
|
|
||
|
}
|