mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-06-04 11:05:50 +08:00
18 lines
345 B
C#
18 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFishing
|
|
{
|
|
public enum FishingTimePolicy
|
|
{
|
|
[Description("全天")]
|
|
All,
|
|
[Description("白天")]
|
|
Daytime,
|
|
[Description("夜晚")]
|
|
Nighttime
|
|
}
|
|
}
|