Notification.cs
472 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace ControlPanel.Models
{
public class Notification
{
public virtual int id { get; set; }
public virtual int number { get; set; }
public virtual string river { get; set; }
public virtual bool notification { get; set; }
public virtual bool notificationphone { get; set; }
public virtual bool opendoor { get; set; }
}
}