mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
18 lines
408 B
C#
18 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Dynamic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remotely.Shared.ViewModels
|
|
{
|
|
public class TerminalLineItem
|
|
{
|
|
public Guid Id { get; } = Guid.NewGuid();
|
|
public string Text { get; set; }
|
|
public string ClassName { get; set; }
|
|
public string Title { get; set; }
|
|
}
|
|
}
|