mirror of
https://github.com/4sval/FModel.git
synced 2026-03-22 09:44:37 -05:00
11 lines
346 B
C#
11 lines
346 B
C#
using FModel.ViewModels;
|
|
|
|
namespace FModel.Services
|
|
{
|
|
public sealed class ApplicationService
|
|
{
|
|
public static ThreadWorkerViewModel ThreadWorkerView { get; } = new();
|
|
public static ApplicationViewModel ApplicationView { get; } = new();
|
|
public static ApiEndpointViewModel ApiEndpointView { get; } = new();
|
|
}
|
|
} |