~ruther/NosTale-PacketLogger

ref: f7a6b7a6d2a6abba6f945b4dfba3b770a85dd38a NosTale-PacketLogger/src/PacketLogger/ViewModels/ViewModelBase.cs -rw-r--r-- 370 bytes
f7a6b7a6 — František Boháček feat: add support for two columns file format without time 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
//  ViewModelBase.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.ComponentModel;
using ReactiveUI;

namespace PacketLogger.ViewModels;

/// <inheritdoc />
public class ViewModelBase : ReactiveObject, INotifyPropertyChanged
{
}