You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
9 lines
252 B
C#
9 lines
252 B
C#
namespace OneSwiss.Server.Models;
|
|
|
|
public class ErrorReport : DatabaseObject
|
|
{
|
|
public DateTime CreatedAt { get; set; }
|
|
public string Report { get; set; }
|
|
public byte[] Screenshot { get; set; } = null!;
|
|
public byte[] Hash { get; set; }
|
|
} |