mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
This is a first working message display, but doesn't ignore messages seen already. This needs fixing.
39 lines
749 B
C#
39 lines
749 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DisplayMagician
|
|
{
|
|
class MessageItem
|
|
{
|
|
public int Id
|
|
{ get; set; }
|
|
|
|
public string MessageMode
|
|
{ get; set; } = "txt";
|
|
|
|
public string MinVersion
|
|
{ get; set; }
|
|
|
|
public string MaxVersion
|
|
{ get; set; }
|
|
|
|
public string StartDate
|
|
{ get; set; } = null;
|
|
|
|
public string EndDate
|
|
{ get; set; } = null;
|
|
|
|
public string HeadingText
|
|
{ get; set; } = "DisplayMagician Message";
|
|
|
|
public string ButtonText
|
|
{ get; set; } = "&Close";
|
|
|
|
public string Url
|
|
{ get; set; } = null;
|
|
}
|
|
}
|