18 lines
440 B
C#
18 lines
440 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Thermo.Active.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; }
|
|
}
|
|
}
|