Import products
This commit is contained in:
@@ -3,4 +3,7 @@ namespace Bimix.Domain.Entities;
|
||||
public class Product : BaseEntity
|
||||
{
|
||||
public required string Name { get; set; }
|
||||
public string? Code { get; set; }
|
||||
public string? Ean { get; set; }
|
||||
public string? StockAddresses { get; set; }
|
||||
}
|
||||
@@ -2,6 +2,6 @@ namespace Bimix.Domain.Entities;
|
||||
|
||||
public class SyncState
|
||||
{
|
||||
public required string Entity { get; set; }
|
||||
public required string Entity { get; init; }
|
||||
public required long LastSynced { get; set; } // UnixTimestamp
|
||||
}
|
||||
Reference in New Issue
Block a user