mirror of
https://github.com/yck1509/ConfuserEx
synced 2026-06-08 18:29:44 +00:00
19 lines
326 B
C#
19 lines
326 B
C#
using System;
|
|
|
|
namespace ConfuserEx.ViewModel {
|
|
public class StringItem : IViewModel<string> {
|
|
public StringItem(string item) {
|
|
Item = item;
|
|
}
|
|
|
|
public string Item { get; private set; }
|
|
|
|
string IViewModel<string>.Model {
|
|
get { return Item; }
|
|
}
|
|
|
|
public override string ToString() {
|
|
return Item;
|
|
}
|
|
}
|
|
} |