Spalte 'COMMENT' zu Entitäten und Dto's hinzugefügt:
This commit is contained in:
parent
26f2e157c6
commit
047c4d09e8
@ -4,5 +4,6 @@
|
|||||||
int EnvelopeId,
|
int EnvelopeId,
|
||||||
string UserReference,
|
string UserReference,
|
||||||
int Status,
|
int Status,
|
||||||
DateTime? ActionDate);
|
DateTime? ActionDate,
|
||||||
|
string? Comment = null);
|
||||||
}
|
}
|
||||||
@ -6,5 +6,6 @@
|
|||||||
string UserReference,
|
string UserReference,
|
||||||
int Status,
|
int Status,
|
||||||
DateTime AddedWhen,
|
DateTime AddedWhen,
|
||||||
DateTime? ActionDate);
|
DateTime? ActionDate,
|
||||||
|
string? Comment = null);
|
||||||
}
|
}
|
||||||
@ -30,5 +30,8 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
|
|
||||||
[Column("ACTION_DATE", TypeName = "datetime")]
|
[Column("ACTION_DATE", TypeName = "datetime")]
|
||||||
public DateTime? ActionDate { get; set; }
|
public DateTime? ActionDate { get; set; }
|
||||||
|
|
||||||
|
[Column("COMMENT", TypeName = "nvarchar(max)")]
|
||||||
|
public string? Comment { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user