This commit is contained in:
mmrbnjd
2024-06-25 17:14:08 +03:30
parent 4631d8f159
commit ce81911242
10 changed files with 76 additions and 23 deletions

View File

@@ -43,6 +43,7 @@ namespace TaxPayer.Infrastructure.Persistence
public DbSet<OrderDiscountCode> OrderDiscountCodes { get; set; }
public DbSet<TiceketUnknownPeople> TiceketUnknownPeoples { get; set; }
public DbSet<SaleLead> SaleLeads { get; set; }
public DbSet<UserNotfi> UserNotifis { get; set; }
#endregion
//public override Task<int> SaveChangesAsync(CancellationToken cancellationToken = new CancellationToken())
//{

View File

@@ -5,9 +5,10 @@
public int ID { get; set; }
public int Type { get; set; }
public string Message { get; set; }
public string? Path { get; set; }
public string? ViewSize { get; set; }
public string Title { get; set; }
public string Date { get; set; }
public bool Status { get; set; }
public int Status { get; set; }
public string? ForUser { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace Back.Data.Models
{
public class UserNotfi
{
public int ID { get; set; }
public int UserID { get; set; }
public int NotificationID { get; set; }
}
}