Initial Commit

This commit is contained in:
2026-04-03 16:26:26 -04:00
parent 4726475694
commit e6b3cf6b08
54 changed files with 388264 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MarketData.Generator.Momentum
{
public class SMSNotifications : Dictionary<String,SMSNotification>
{
}
public class SMSNotification
{
public SMSNotification()
{
}
public DateTime NotificationTime{get;set;}
public int ElapsedTimeMinutes(DateTime currentTime)
{
TimeSpan elapsedTime=currentTime-NotificationTime;
return elapsedTime.Minutes;
}
}
}