25 lines
578 B
C#
25 lines
578 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DatabaseModels
|
|
{
|
|
[Table("alarm_description")]
|
|
public class AlarmDescriptionsModel
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
public int AlarmId { get; set; }
|
|
|
|
[Column("title")]
|
|
public string Title { get; set; }
|
|
|
|
[Column("description")]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|