Remotely/Shared/Models/GenericCommandResult.cs
2020-03-04 23:45:51 -08:00

18 lines
524 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Remotely.Shared.Models
{
public class GenericCommandResult
{
public string DeviceID { get; set; }
public string CommandContextID { get; set; }
public string CommandType { get; set; }
public string StandardOutput { get; set; }
public string ErrorOutput { get; set; }
public DateTimeOffset TimeStamp { get; set; } = DateTimeOffset.Now;
}
}