mirror of
https://github.com/yck1509/ConfuserEx
synced 2026-06-08 18:29:44 +00:00
13 lines
287 B
C#
13 lines
287 B
C#
using System;
|
|
|
|
namespace ConfuserEx.ViewModel {
|
|
public abstract class TabViewModel : ViewModelBase {
|
|
protected TabViewModel(AppVM app, string header) {
|
|
App = app;
|
|
Header = header;
|
|
}
|
|
|
|
public AppVM App { get; private set; }
|
|
public string Header { get; private set; }
|
|
}
|
|
} |