DeliveryAdminWindow: Update delivery filter

This commit is contained in:
2023-10-03 22:32:49 +02:00
parent 96570dffd4
commit d5e4e0a29d
10 changed files with 109 additions and 55 deletions

View File

@ -1,5 +1,6 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute;
namespace Elwig.Models {
[Table("country"), PrimaryKey("Num"), Index("Alpha2", IsUnique = true), Index("Alpha3", IsUnique = true)]