mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-16 06:05:52 -06:00
13 lines
318 B
C#
13 lines
318 B
C#
using PhotoFrame.Logic.BL;
|
|
using PhotoFrame.Logic.Config;
|
|
|
|
namespace PhotoFrame.Logic.UI.ViewModels
|
|
{
|
|
public class ViewModelNormal : ViewModelBase
|
|
{
|
|
public ViewModelNormal(IFrameController frameController, IFrameConfig config)
|
|
: base(frameController, config)
|
|
{
|
|
}
|
|
}
|
|
}
|