TelegramMessageCounter/CounterInfo.cs

18 lines
321 B
C#
Raw Normal View History

2025-02-05 14:05:04 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelegramMessageCounter
{
internal record CounterInfo
(
float Multiplier,
int TargetMsg,
int MyMsg,
int FullMsg,
string TargetUsername
);
}