keeweb/helper/win32/src/KeeWebHelper/WindowInfo.cs

15 lines
271 B
C#
Raw Normal View History

2016-04-24 14:12:33 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace KeeWebHelper
{
class WindowInfo
{
2019-09-12 23:37:31 +02:00
public string Id { get; set; }
2016-04-24 14:12:33 +02:00
public string Title { get; set; }
public string Url { get; set; }
}
}