19 lines
443 B
C#
19 lines
443 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Internal;
|
|
|
|
namespace Persistence.Database.Model
|
|
{
|
|
public class SetpointDictionary
|
|
{
|
|
[Key, Comment("Ключ")]
|
|
public Guid Key { get; set; }
|
|
|
|
[Comment("Наименование")]
|
|
public required string Name { get; set; }
|
|
|
|
[Comment("Описание")]
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|