Skip to content

Commit

Permalink
fix: remove null-forgiving operator
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaDmitrasinovic committed Jan 24, 2024
1 parent c75d918 commit dc94216
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ public QuotasDbContext(DbContextOptions<QuotasDbContext> options) : base(options

public QuotasDbContext(DbContextOptions<QuotasDbContext> options, IServiceProvider serviceProvider) : base(options, serviceProvider) { }

public DbSet<Identity> Identities { get; set; } = null!;
public DbSet<Identity> Identities { get; set; }

public DbSet<Tier> Tiers { get; set; }

public DbSet<Message> Messages { get; set; } = null!;
public DbSet<Message> Messages { get; set; }

public DbSet<FileMetadata> Files { get; set; } = null!;
public DbSet<FileMetadata> Files { get; set; }

public DbSet<Relationship> Relationships { get; set; } = null!;
public DbSet<Relationship> Relationships { get; set; }

public DbSet<RelationshipTemplate> RelationshipTemplates { get; set; } = null!;
public DbSet<RelationshipTemplate> RelationshipTemplates { get; set; }

public DbSet<Token> Tokens { get; set; } = null!;
public DbSet<Token> Tokens { get; set; }

protected override void OnModelCreating(ModelBuilder builder)
{
Expand Down

0 comments on commit dc94216

Please sign in to comment.