Monday, September 23, 2013

Entities

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HRHO_Entities
{
    public class CountryEntities
    {
        #region
        public int ID { get; set; }
        public string Name { get; set; }
        public string CountryCode { get; set; }
        public int companyId { get; set; }
        public int flag { get; set; }
        //public int companyId { get; set; }
       
        #endregion
    }
}

No comments: