2025-02-11 22:37:33 +03:00
|
|
|
|
using CsvHelper.Configuration.Attributes;
|
2025-02-05 14:05:04 +03:00
|
|
|
|
|
2025-02-11 22:37:33 +03:00
|
|
|
|
namespace TelegramMessageCounter;
|
|
|
|
|
|
|
|
|
|
public record CounterInfo(
|
|
|
|
|
[property: Name("Message multiplier")]
|
|
|
|
|
float MessageMultiplier,
|
|
|
|
|
[property: Name("Symbols multiplier")]
|
|
|
|
|
float SymbolsMultiplier,
|
|
|
|
|
[property: Name("Your messages")]
|
|
|
|
|
int UserMessageCount,
|
|
|
|
|
[property: Name("Target messages")]
|
|
|
|
|
int TargetMessageCount,
|
|
|
|
|
[property: Name("Your symbols")]
|
|
|
|
|
int UserSymbolsCount,
|
2025-02-12 15:30:25 +03:00
|
|
|
|
[property: Name("Target symbols")]
|
2025-02-11 22:37:33 +03:00
|
|
|
|
int TargetSymbolsCount,
|
|
|
|
|
[property: Name("All messages")]
|
|
|
|
|
int FullMessageCount,
|
|
|
|
|
[Index(0)]
|
|
|
|
|
[property: Name("Target username")]
|
|
|
|
|
string TargetUsername
|
|
|
|
|
);
|