20 lines
480 B
C#
20 lines
480 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Step.Model.DatabaseModels
|
|
{
|
|
[Table("machine_user")]
|
|
public class PerformedMaintenanceModel
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
public int PerformedMaintenanceId { get; set; }
|
|
|
|
[Column("date")]
|
|
public DateTime Date { get; set; }
|
|
|
|
[Column("counter_value")]
|
|
public int CounterValue { get; set; }
|
|
}
|
|
} |