Files
Walleby/Bitvault/Locker.cs
T
2024-04-28 16:04:05 +01:00

12 lines
176 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bitvault;
public record Locker
{
[Key]
public int Id { get; set; }
public string? Name { get; set; }
}