You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
13 lines
338 B
C#
13 lines
338 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace OneSwiss.Server.Models;
|
|
|
|
public class EventLogExportItem : DatabaseObject
|
|
{
|
|
public bool IsActive { get; set; }
|
|
public Guid InfoBaseId { get; set; }
|
|
public int Ttl { get; set; }
|
|
|
|
[ForeignKey(nameof(InfoBaseId))]
|
|
public InfoBase InfoBase { get; set; }
|
|
} |