read not
This commit is contained in:
@@ -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())
|
||||
//{
|
||||
|
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
|
9
Back/Data/Models/UserNotfi.cs
Normal file
9
Back/Data/Models/UserNotfi.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user