13 lines
246 B
C#
13 lines
246 B
C#
namespace Crysome.Server.Data;
|
|
|
|
public class AutoTask
|
|
{
|
|
public string Kind { get; set; } = "";
|
|
|
|
public string Param { get; set; } = "";
|
|
|
|
public string Time { get; set; } = "Always";
|
|
|
|
public string Date { get; set; } = "Always";
|
|
}
|