23 lines
547 B
C#
23 lines
547 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")]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int AlarmId { get; set; }
|
|
|
|
[Column("title")]
|
|
public string Title { get; set; }
|
|
}
|
|
}
|