From e5b4a53ddd49a8853ea0af8042566caa8660fbe3 Mon Sep 17 00:00:00 2001 From: Loretta Date: Tue, 11 Nov 2025 20:51:27 +0100 Subject: [PATCH] improvements, fixes, etc.. --- Libraries/Nop.Core/Domain/Orders/OrderNote.cs | 54 +++++++++---------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/Libraries/Nop.Core/Domain/Orders/OrderNote.cs b/Libraries/Nop.Core/Domain/Orders/OrderNote.cs index 4228e77..98e1daf 100644 --- a/Libraries/Nop.Core/Domain/Orders/OrderNote.cs +++ b/Libraries/Nop.Core/Domain/Orders/OrderNote.cs @@ -1,32 +1,32 @@ -namespace Nop.Core.Domain.Orders; +//namespace Nop.Core.Domain.Orders; -/// -/// Represents an order note -/// -public partial class OrderNote : BaseEntity -{ - /// - /// Gets or sets the order identifier - /// - public int OrderId { get; set; } +///// +///// Represents an order note +///// +//public partial class OrderNote : BaseEntity +//{ +// /// +// /// Gets or sets the order identifier +// /// +// public int OrderId { get; set; } - /// - /// Gets or sets the note - /// - public string Note { get; set; } +// /// +// /// Gets or sets the note +// /// +// public string Note { get; set; } - /// - /// Gets or sets the attached file (download) identifier - /// - public int DownloadId { get; set; } +// /// +// /// Gets or sets the attached file (download) identifier +// /// +// public int DownloadId { get; set; } - /// - /// Gets or sets a value indicating whether a customer can see a note - /// - public bool DisplayToCustomer { get; set; } +// /// +// /// Gets or sets a value indicating whether a customer can see a note +// /// +// public bool DisplayToCustomer { get; set; } - /// - /// Gets or sets the date and time of order note creation - /// - public DateTime CreatedOnUtc { get; set; } -} \ No newline at end of file +// /// +// /// Gets or sets the date and time of order note creation +// /// +// public DateTime CreatedOnUtc { get; set; } +//} \ No newline at end of file