ASCU_ALL/ApiServer/Structures/Protect.cs

16 lines
352 B
C#
Raw Normal View History

2024-09-22 04:27:05 +05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ApiServer.Structures
{
public class Protect
{
public byte Index { get; set; }
public byte State { get; set; }
public DateTime start;
public string Start { get { return start.ToString("yyyy.MM.dd HH.mm.ss.fff"); } }
}
}