1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser/Contexts/Selection.cs

12 lines
235 B
C#

namespace TweetLib.Browser.Contexts {
public readonly struct Selection {
public string Text { get; }
public bool Editable { get; }
public Selection(string text, bool editable) {
Text = text;
Editable = editable;
}
}
}