12 lines
297 B
C#
12 lines
297 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace BetterRaid.ViewModels;
|
|
|
|
public class AddChannelWindowViewModel : ViewModelBase
|
|
{
|
|
public AddChannelWindowViewModel(ILogger<AddChannelWindowViewModel> logger)
|
|
{
|
|
logger.LogDebug("AddChannelWindowViewModel created");
|
|
}
|
|
} |