8 lines
163 B
C#
8 lines
163 B
C#
namespace TradingBot.Models;
|
|
|
|
public class Notification
|
|
{
|
|
public string Message { get; set; } = string.Empty;
|
|
public string Type { get; set; } = "info";
|
|
}
|