ExtSubscribers.cs 521 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace ControlPanel.Models.Extend
{
    public class ExtSubscribers
    {
        public  int id { get; set; }
        public  string title { get; set; }
        public  string number { get; set; }
        public string  status { get; set; }  //  изображение статуса СЗС ( online или offline ) 
        public int count { get; set; }       //  количество подписанных АГК  

    }
}