Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace PowderCoating.Application.DTOs.Quote;
|
||||
|
||||
public class QuoteChangeHistoryDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int QuoteId { get; set; }
|
||||
public DateTime ChangedAt { get; set; }
|
||||
public string ChangedByName { get; set; } = string.Empty;
|
||||
public string FieldName { get; set; } = string.Empty;
|
||||
public string? OldValue { get; set; }
|
||||
public string? NewValue { get; set; }
|
||||
public string ChangeDescription { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user