using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AX.FireTrainingSys.Models
{
///
/// 市政消火栓。
///
public class MunicipalFireHydrant
{
///
/// 课件Id。
///
[MaxLength(24)]
public string CoursewareId { get; set; }
///
/// 编号。
///
[MaxLength(32)]
public string Id { get; set; }
///
/// 内容。
///
public string Content { get; set; }
}
}