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

10 lines
258 B
C#

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