Catalog Lite
This commit is contained in:
parent
398cfa310e
commit
181229aa41
18 changed files with 1435 additions and 0 deletions
13
CatalogLite/LiteMessageEventArgs.cs
Normal file
13
CatalogLite/LiteMessageEventArgs.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace CatalogLite;
|
||||
|
||||
public sealed class LiteMessageEventArgs : EventArgs
|
||||
{
|
||||
public LiteMessageEventArgs(string title, string message)
|
||||
{
|
||||
Title = title;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
public string Title { get; }
|
||||
public string Message { get; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue