21 lines
471 B
C#
21 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace C4IT_CustomerPanel.libs
|
|
{
|
|
public class journalAction
|
|
{
|
|
public Boolean visible;
|
|
public string JournalText;
|
|
|
|
public journalAction(string inJournalText, Boolean inVisible=true)
|
|
{
|
|
this.visible = inVisible;
|
|
this.JournalText = inJournalText;
|
|
}
|
|
}
|
|
}
|