mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
30 lines
846 B
C#
30 lines
846 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Observatory.Framework;
|
|
|
|
namespace Observatory.UI.ViewModels
|
|
{
|
|
public class NotificationViewModel : ViewModelBase
|
|
{
|
|
public NotificationViewModel(NotificationArgs notificationArgs)
|
|
{
|
|
|
|
Notification = new()
|
|
{
|
|
Title = notificationArgs.Title,
|
|
Detail = notificationArgs.Detail,
|
|
Timeout = notificationArgs.Timeout,
|
|
XPos = notificationArgs.XPos,
|
|
YPos = notificationArgs.YPos,
|
|
Colour = Avalonia.Media.Color.FromUInt32(Properties.Core.Default.NativeNotifyColour).ToString()
|
|
};
|
|
|
|
}
|
|
|
|
public Models.NotificationModel Notification { get; set; }
|
|
}
|
|
}
|