1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-19 22:59:58 +02:00
Files
onecmonitor/onecmonitor-server/ViewModels/Configurations/ConfigurationEditViewModel.cs
T

12 lines
367 B
C#
Raw Normal View History

2025-02-05 00:59:18 +03:00
using Microsoft.AspNetCore.Mvc;
namespace OnecMonitor.Server.ViewModels.Configurations;
2025-02-10 15:17:02 +03:00
public class ConfigurationEditViewModel
2025-02-05 00:59:18 +03:00
{
public Guid Id { get; init; }
2025-02-10 11:14:35 +03:00
public string Name { get; set; } = string.Empty;
public string Version { get; set; } = string.Empty;
2025-02-05 00:59:18 +03:00
public bool IsExtension { get; set; }
2025-02-10 11:14:35 +03:00
public IFormFile File { get; set; } = null!;
2025-02-05 00:59:18 +03:00
}