LANCommander/LANCommander.Server/Models/AlertViewModel.cs

6 lines
153 B
C#
Raw Normal View History

public class AlertViewModel
{
public string Message { get; set; }
public bool Dismissable { get; set; }
public string Type { get; set; }
}