24 lines
594 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Assets.Scripts.Apis.Models
{
public class EquitmentModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Remark { get; set; }
//封面图片
public string Url { get; set; }
/// <summary>
/// 装备类型 0自行车 1头盔 2衣服 3皮肤 4套装
/// </summary>
public int Type { get; set; }
/// <summary>
/// 是否开放
/// </summary>
public bool IsLock { get; set; }
public bool IsDelete { get; set; }
}
}