9 lines
194 B
C#
9 lines
194 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Knots.Models;
|
|
|
|
public class Key
|
|
{
|
|
[Key] public int Id { get; set; }
|
|
[Required, MaxLength(50)] public string? EnKey { get; set; }
|
|
} |