44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Backend.Models
|
|
{
|
|
public class EmergencyGrouping
|
|
{
|
|
|
|
|
|
}
|
|
public class SaveGrouping
|
|
{
|
|
public int id { get; set; }
|
|
public int priority { get; set; }
|
|
public string name { get; set; }
|
|
public string disaster { get; set; }
|
|
public byte verify { get; set; }
|
|
}
|
|
|
|
public class KeyValueID: KeyValue
|
|
{
|
|
public int id { get; set; }
|
|
}
|
|
|
|
public class Emergency_member
|
|
{
|
|
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 Emergency_member_table : Emergency_member
|
|
{
|
|
public string grouping_name { get; set; }
|
|
public string department_name { get; set; }
|
|
}
|
|
}
|