This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using AyaNova.Biz;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
|
||||
//otherwise the server will call it an invalid record if the field isn't sent from client
|
||||
|
||||
public class Notification
|
||||
public class InAppNotification
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
@@ -32,7 +29,7 @@ namespace AyaNova.Models
|
||||
[Required]
|
||||
public bool Fetched { get; set; }
|
||||
|
||||
public Notification()
|
||||
public InAppNotification()
|
||||
{
|
||||
Created = DateTime.UtcNow;
|
||||
Fetched = false;
|
||||
|
||||
Reference in New Issue
Block a user