public CrispyKeyValuePairHistoryResponse(string value, CrispyKeyValueValueType valueType, DateTime dateTimeCreated)
 {
     this.Value           = value;
     this.ValueType       = valueType;
     this.DateTimeCreated = dateTimeCreated.ToString("yyyy-MM-dd HH:mm:ss");
 }
Exemplo n.º 2
0
 public CrispyKeyValuePairHistory(Guid keyValuePairId, string value, CrispyKeyValueValueType valueType)
 {
     this.KeyValuePairId = keyValuePairId;
     this.Value          = value;
     this.ValueType      = valueType;
 }