Signed-off-by: studen <Goga@gmail.com>
This commit is contained in:
studen 2025-01-29 11:35:51 +03:00
parent 6596181181
commit 62cbc90a70
4 changed files with 8 additions and 0 deletions

View File

@ -16,4 +16,5 @@ public class Actions
public string zur_4 { get; set; }
public string zur_5 { get; set; }
public string Winer { get; set; }
public Meropriatie mero { get; set; }
}

View File

@ -30,6 +30,10 @@ public class RemoteDatabaseContext : DbContext
public DbSet<Acts> acty { get; set; }
public DbSet<Country> country { get; set; }
public DbSet<Meropriatie> meropriatie { get; set; }
public DbSet<Actions> actions { get; set; }
public DbSet<Avtorize> avtorize { get; set; }
public DbSet<Moders> moders { get; set; }
public DbSet<Uchastki> uchastniki { get; set; }
}
}

View File

@ -9,4 +9,6 @@ public class Meropriatie
public DateOnly date { get; set; }
public int day { get; set; }
public int city { get; set; }
public Actions action { get; set; }
public Country country { get; set; }
}

View File

@ -13,4 +13,5 @@ public class Uchastki
public string password { get; set; }
public string photo { get; set; }
public char sex { get; set; }
public Meropriatie meropriatie { get; set; }
}