31 lines
796 B
C#
31 lines
796 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Backend.Models
|
|
{
|
|
public class EmergencyContact
|
|
{
|
|
public string emergency_member_guid { get; set; }
|
|
public int grouping { get; set; }
|
|
public string full_name { get; set; }
|
|
public int department { get; set; }
|
|
public string phone { get; set; }
|
|
public string lineid { get; set; }
|
|
public string email { get; set; }
|
|
}
|
|
|
|
public class EmergencyContactTable: EmergencyContact
|
|
{
|
|
public string groupingName { get; set; }
|
|
public string departmentName { get; set; }
|
|
}
|
|
|
|
public class export
|
|
{
|
|
public List<int> groupidlist { get; set; }
|
|
public string disaster { get; set; }
|
|
}
|
|
}
|