mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-21 20:42:46 +01:00
12 lines
235 B
C#
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;
|
|
}
|
|
}
|
|
}
|