You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
12 lines
294 B
C#
12 lines
294 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace OneSwiss.Server.Models.MaintenanceTasks;
|
|
|
|
[Owned]
|
|
public class UpdateConfigurationStep
|
|
{
|
|
public Guid? FileId { get; set; }
|
|
|
|
[ForeignKey(nameof(FileId))] public File? File { get; set; }
|
|
} |