using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LoginModel
{
[Serializable]
//enterprise_app_entry
public class enterprise_app_entry
{
///
/// ent_id
///
public string ent_id { get; set; } = "";
///
/// app_type_name
///
public string app_type_name { get; set; } = "";
///
/// app_count
///
public int app_count { get; set; } = 0;
///
/// app_usage_count
///
public int app_usage_count { get; set; } = 0;
///
/// app_usage_days
///
public int app_usage_days { get; set; } = 0;
}
}