Updated timestamp string format

This commit is contained in:
2025-06-03 09:39:46 -04:00
parent 1ddf18a400
commit 0ce0dc35e1
5 changed files with 12 additions and 10 deletions

View File

@@ -1,8 +1,7 @@
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using PartSource.Data.Models;
using PartSource.Services;
using System.Net;
using System.Threading.Tasks;
namespace PartSource.Api.Controllers
{
@@ -37,7 +36,7 @@ namespace PartSource.Api.Controllers
StoreNumber = inventory.Store,
Sku = sku,
Quantity = inventory.QTY,
Updated = inventory.Updated ?? System.DateTime.MinValue
Updated = inventory.Updated
}
});
}