示例#1
0
        public ActionResult <StatusResponse> GetStatus()
        {
            //1. TODO: Go check the actual status
            var response = new StatusResponse
            {
                Status        = "I'm giving it all she's got, Captain!",
                CheckedBy     = "Scottie",
                LastChecked   = Time.GetCurrent().AddMinutes(-15),
                SingletonDemo = Time.GetCreatedAt()
            };

            return(Ok(response));
        }