mirror of
https://gitee.com/xiarenalofs/squad-rain-ops-mini.git
synced 2026-08-07 05:45:46 +08:00
12 lines
311 B
C#
12 lines
311 B
C#
using System;
|
|
|
|
namespace RainOpsMini.Services
|
|
{
|
|
public class BanSyncState
|
|
{
|
|
public DateTime LastSyncTime { get; set; } = DateTime.MinValue;
|
|
public DateTime NextSyncTime { get; set; } = DateTime.MinValue;
|
|
public TimeSpan Interval { get; set; } = TimeSpan.FromMinutes(20);
|
|
}
|
|
}
|