16 lines
352 B
C#
16 lines
352 B
C#
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"); } }
|
|
}
|
|
}
|