You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
12 lines
367 B
C#
12 lines
367 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace OnecMonitor.Server.ViewModels.Configurations;
|
|
|
|
public class ConfigurationEditViewModel
|
|
{
|
|
public Guid Id { get; init; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Version { get; set; } = string.Empty;
|
|
public bool IsExtension { get; set; }
|
|
public IFormFile File { get; set; } = null!;
|
|
} |