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.
24 lines
477 B
24 lines
477 B
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; } |
|
|
|
}
|
|
|