18 lines
389 B
C#
18 lines
389 B
C#
using Cal.DataTable;
|
|
using ET.EventType;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace ET
|
|
{
|
|
public class AccountRegisterCountEvent: AEvent<EventType.UpdatePer1DayOfMonth>
|
|
{
|
|
public override async ETTask Run(UpdatePer1DayOfMonth args)
|
|
{
|
|
await ETTask.CompletedTask;
|
|
AccountHelper.Refresh();
|
|
}
|
|
}
|
|
}
|