mirror of
https://github.com/4sval/FModel.git
synced 2026-07-28 14:32:55 -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();
|
|
}
|
|
} |