1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-13 21:18:17 +02:00
Files

12 lines
328 B
C#

using System.ComponentModel.DataAnnotations;
using Microsoft.EntityFrameworkCore;
namespace OneSwiss.Server.Models.MaintenanceTasks;
[Owned]
public class LockConnectionsStep
{
[MaxLength(20)] public string AccessCode { get; set; } = string.Empty;
[MaxLength(200)] public string Message { get; set; } = string.Empty;
}