ibms-dome/FrontendWebApi/Models/EmergencyContact.cs
2022-10-14 16:08:54 +08:00

31 lines
595 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace FrontendWebApi.Models
{
public class export
{
public List<int> groupidlist { get; set; }
public string disaster { get; set; }
}
public class NpoiMemoryStream : MemoryStream
{
public NpoiMemoryStream()
{
AllowClose = true;
}
public bool AllowClose { get; set; }
public override void Close()
{
if (AllowClose)
base.Close();
}
}
}