Logo white

ADAM / AIAHTML5

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues
  • Merge Requests 14
  • Labels
  • Wiki
  • Snippets
  • AIAHTML5
  • 350-UTILITIES
  • SQL_To_Json
  • SQLToJSON
  • SQLToJSON
  • UserModules.cs
  • chnaged implementation due to inavlid json. now using list for modules and usertype. ...
    24282405
    after converting data into json, need to validate it.
    Nikita Kulshreshtha authored
    2017-03-06 18:18:00 +0530  
    Browse Code »
UserModules.cs 335 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SQLToJSON
{
   public class UserModules
    {
       
        public string id { get; set; }
        public string name { get; set; }
        public string slug { get; set; }
    
    }
}