Compare commits

..

No commits in common. "7518dcbf064249353b2d1a6d8323d97e9ae8a10e" and "33da539ea38a609a122df1065b1248054c3df097" have entirely different histories.

1 changed files with 27 additions and 27 deletions

View File

@ -1,32 +1,32 @@
//namespace Nop.Core.Domain.Orders; namespace Nop.Core.Domain.Orders;
///// <summary> /// <summary>
///// Represents an order note /// Represents an order note
///// </summary> /// </summary>
//public partial class OrderNote : BaseEntity public partial class OrderNote : BaseEntity
//{ {
// /// <summary> /// <summary>
// /// Gets or sets the order identifier /// Gets or sets the order identifier
// /// </summary> /// </summary>
// public int OrderId { get; set; } public int OrderId { get; set; }
// /// <summary> /// <summary>
// /// Gets or sets the note /// Gets or sets the note
// /// </summary> /// </summary>
// public string Note { get; set; } public string Note { get; set; }
// /// <summary> /// <summary>
// /// Gets or sets the attached file (download) identifier /// Gets or sets the attached file (download) identifier
// /// </summary> /// </summary>
// public int DownloadId { get; set; } public int DownloadId { get; set; }
// /// <summary> /// <summary>
// /// Gets or sets a value indicating whether a customer can see a note /// Gets or sets a value indicating whether a customer can see a note
// /// </summary> /// </summary>
// public bool DisplayToCustomer { get; set; } public bool DisplayToCustomer { get; set; }
// /// <summary> /// <summary>
// /// Gets or sets the date and time of order note creation /// Gets or sets the date and time of order note creation
// /// </summary> /// </summary>
// public DateTime CreatedOnUtc { get; set; } public DateTime CreatedOnUtc { get; set; }
//} }