Fix CardReaderService.conf for supervisorctl to ensure correct pathing as per install directories. Correct MessageLogger to ensure it appends log messages, previously overwrote the logs. Add manual Reset event in Service1.cs to ensure that we exit when we stop. Add configurationmanager/config property, to allow DataCenterHelper to pull updated configurations at runtime. Add TimeStamp to CardDataPost object #103
10 lines
186 B
C#
10 lines
186 B
C#
using System;
|
|
|
|
namespace CardReaderService
|
|
{
|
|
public class CardDataPost
|
|
{
|
|
public DateTime UtcTimeStamp { get; set; }
|
|
public string CardUId { get; set; }
|
|
}
|
|
} |