You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
12 lines
328 B
C#
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;
|
|
} |