mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
19 lines
575 B
C#
19 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace Remotely.Shared.Models
|
|
{
|
|
public class GenericCommandResult
|
|
{
|
|
public string DeviceID { get; set; }
|
|
public string CommandResultID { get; set; }
|
|
public string CommandType { get; set; }
|
|
public string StandardOutput { get; set; }
|
|
public string ErrorOutput { get; set; }
|
|
public DateTimeOffset TimeStamp { get; set; } = DateTimeOffset.Now;
|
|
}
|
|
}
|