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

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; }
}